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 (
|
||||
<div className={styles.container}>
|
||||
<Tooltip
|
||||
content={t(
|
||||
'dashboard.conditional-rendering.overlay.tooltip',
|
||||
'Element is hidden due to conditional rendering.'
|
||||
)}
|
||||
>
|
||||
<Tooltip content={t('dashboard.conditional-rendering.overlay.tooltip', 'Element is hidden by show/hide rules.')}>
|
||||
<Icon name="eye-slash" />
|
||||
</Tooltip>
|
||||
</div>
|
||||
|
|
|
@ -101,12 +101,7 @@ export function TabItemRenderer({ model }: SceneComponentProps<TabItem>) {
|
|||
function IsHiddenSuffix() {
|
||||
return (
|
||||
<Box paddingLeft={1} display={'inline'}>
|
||||
<Tooltip
|
||||
content={t(
|
||||
'dashboard.conditional-rendering.overlay.tooltip',
|
||||
'Element is hidden due to conditional rendering.'
|
||||
)}
|
||||
>
|
||||
<Tooltip content={t('dashboard.conditional-rendering.overlay.tooltip', 'Element is hidden by show/hide rules.')}>
|
||||
<Icon name="eye-slash" />
|
||||
</Tooltip>
|
||||
</Box>
|
||||
|
|
|
@ -4553,7 +4553,7 @@
|
|||
"unsupported-object-type": "Conditional rendering not supported for this item type"
|
||||
},
|
||||
"overlay": {
|
||||
"tooltip": "Element is hidden due to conditional rendering."
|
||||
"tooltip": "Element is hidden by show/hide rules."
|
||||
},
|
||||
"root": {
|
||||
"title": "Show / hide rules"
|
||||
|
|
Loading…
Reference in New Issue