Update hidden element copy

This commit is contained in:
oscarkilhed 2025-10-07 09:23:57 +02:00
parent 2c5ccd3283
commit e93512d642
3 changed files with 3 additions and 13 deletions

View File

@ -9,12 +9,7 @@ export const ConditionalRenderingOverlay = () => {
return ( return (
<div className={styles.container}> <div className={styles.container}>
<Tooltip <Tooltip content={t('dashboard.conditional-rendering.overlay.tooltip', 'Element is hidden by show/hide rules.')}>
content={t(
'dashboard.conditional-rendering.overlay.tooltip',
'Element is hidden due to conditional rendering.'
)}
>
<Icon name="eye-slash" /> <Icon name="eye-slash" />
</Tooltip> </Tooltip>
</div> </div>

View File

@ -101,12 +101,7 @@ export function TabItemRenderer({ model }: SceneComponentProps<TabItem>) {
function IsHiddenSuffix() { function IsHiddenSuffix() {
return ( return (
<Box paddingLeft={1} display={'inline'}> <Box paddingLeft={1} display={'inline'}>
<Tooltip <Tooltip content={t('dashboard.conditional-rendering.overlay.tooltip', 'Element is hidden by show/hide rules.')}>
content={t(
'dashboard.conditional-rendering.overlay.tooltip',
'Element is hidden due to conditional rendering.'
)}
>
<Icon name="eye-slash" /> <Icon name="eye-slash" />
</Tooltip> </Tooltip>
</Box> </Box>

View File

@ -4553,7 +4553,7 @@
"unsupported-object-type": "Conditional rendering not supported for this item type" "unsupported-object-type": "Conditional rendering not supported for this item type"
}, },
"overlay": { "overlay": {
"tooltip": "Element is hidden due to conditional rendering." "tooltip": "Element is hidden by show/hide rules."
}, },
"root": { "root": {
"title": "Show / hide rules" "title": "Show / hide rules"