dd-willgan commented on issue #26373: URL: https://github.com/apache/superset/issues/26373#issuecomment-2433538127
For me, this was happening because we had too many users, but the number of permissions the role had was small. We patched our Superset changing this [line](https://github.com/apache/superset/blob/e0172a24b85f172b04cb37c4c94a5bb5e533e325/superset/security/manager.py#L144) ``` RoleModelView.edit_columns = ["name", "permissions", "user"] ``` to ``` RoleModelView.edit_columns = ["name", "permissions"] ``` Disables editing users in the List Roles page but let us edit the permissions again -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
