diff --git a/superset/row_level_security/schemas.py b/superset/row_level_security/schemas.py index 04d7d9b9d..3bb0e8337 100644 --- a/superset/row_level_security/schemas.py +++ b/superset/row_level_security/schemas.py @@ -78,7 +78,7 @@ class RLSListSchema(Schema): tables = fields.List(fields.Nested(TablesSchema)) clause = fields.String(metadata={"description": "clause_description"}) changed_on_delta_humanized = fields.Function( - RowLevelSecurityFilter.created_on_delta_humanized + RowLevelSecurityFilter.changed_on_delta_humanized ) group_key = fields.String(metadata={"description": "group_key_description"}) description = fields.String(metadata={"description": "description_description"})