Skip to content

Commit

Permalink
change roles title on base filters
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed May 19, 2023
1 parent 58061fe commit 16407d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset-frontend/src/features/rls/RowLevelSecurityModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,9 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) {

<StyledInputContainer>
<div className="control-label">
{t('Roles')}{' '}
{currentRule.filter_type === FilterType.BASE
? t('Excluded roles')
: t('Roles')}{' '}
<InfoTooltip
tooltip={t(
'For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.',
Expand Down

0 comments on commit 16407d2

Please sign in to comment.