Request to Disable Chart Title Hyperlinks Based on User Roles in Superset #33393
SanthoshLakshmi
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Issue Description
We need to disable hyperlinks on chart titles in Apache Superset dashboards based on user roles (e.g., Public, Gamma, Alpha). Currently, chart titles are clickable by default, but we want to restrict this behavior for certain roles.
Attempted Solutions (Not Working)
(
.dashboard-component .dashboard-component-chart-holder .header a {
pointer-events: none !important;
cursor: default !important;
text-decoration: none !important;
color: inherit !important;
}
) – No effect.
Proposed Solutions
Since manual fixes aren't working, we should request an official feature or fix from the Superset team.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions