This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 3.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 8d873e6da6c00d9ed853f86f4f9dfd06c5a19aac Author: yousoph <[email protected]> AuthorDate: Thu Nov 16 09:48:54 2023 -0800 fix(rls): Update text from tables to datasets in RLS modal (#25997) (cherry picked from commit 210f1f8f95531365da2c5a5897e801c4cb7edacd) --- superset-frontend/src/features/rls/RowLevelSecurityModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx b/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx index dac4858e4a..20197ecf58 100644 --- a/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx +++ b/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx @@ -385,10 +385,10 @@ function RowLevelSecurityModal(props: RowLevelSecurityModalProps) { <StyledInputContainer> <div className="control-label"> - {t('Tables')} <span className="required">*</span> + {t('Datasets')} <span className="required">*</span> <InfoTooltip tooltip={t( - 'These are the tables this filter will be applied to.', + 'These are the datasets this filter will be applied to.', )} /> </div>
