mirror of https://github.com/grafana/grafana.git
Update hidden element copy
This commit is contained in:
parent
2c5ccd3283
commit
e93512d642
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue