mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 00:39:50 +03:00
change tooltips #504
This commit is contained in:
@@ -376,22 +376,22 @@ const SettingsCustomization: FC = () => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ToggleButton value="8">
|
<ToggleButton value="8">
|
||||||
<Tooltip arrow placement="top" title="mark it as favorite to be listed at the top of the Dashboard">
|
<Tooltip arrow placement="top" title="filter favorites">
|
||||||
<StarIcon sx={{ fontSize: 14 }} />
|
<StarIcon sx={{ fontSize: 14 }} />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="4">
|
<ToggleButton value="4">
|
||||||
<Tooltip arrow placement="top" title="make it read-only, only if it has write operation available">
|
<Tooltip arrow placement="top" title="filter entities with write action disabled">
|
||||||
<EditOffOutlinedIcon sx={{ fontSize: 14 }} />
|
<EditOffOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="2">
|
<ToggleButton value="2">
|
||||||
<Tooltip arrow placement="top" title="excluded it from MQTT and API outputs">
|
<Tooltip arrow placement="top" title="filter entities excluded from MQTT and API outputs">
|
||||||
<CommentsDisabledOutlinedIcon sx={{ fontSize: 14 }} />
|
<CommentsDisabledOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="1">
|
<ToggleButton value="1">
|
||||||
<Tooltip arrow placement="top" title="hide it from the Dashboard">
|
<Tooltip arrow placement="top" title="filter entities hidden from Web Dashboard">
|
||||||
<VisibilityOffOutlinedIcon sx={{ fontSize: 14 }} />
|
<VisibilityOffOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
@@ -403,26 +403,30 @@ const SettingsCustomization: FC = () => {
|
|||||||
<VisibilityOffOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />:
|
<VisibilityOffOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />:
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Button
|
<Tooltip arrow placement="top" title="mark shown entities to be all visible and output ">
|
||||||
size="small"
|
<Button
|
||||||
sx={{ fontSize: 10 }}
|
size="small"
|
||||||
variant="outlined"
|
sx={{ fontSize: 10 }}
|
||||||
color="inherit"
|
variant="outlined"
|
||||||
onClick={() => maskDisabled(false)}
|
color="inherit"
|
||||||
>
|
onClick={() => maskDisabled(false)}
|
||||||
enable
|
>
|
||||||
</Button>
|
enable
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Button
|
<Tooltip arrow placement="top" title="mark shown entities to be not visible or output ">
|
||||||
size="small"
|
<Button
|
||||||
sx={{ fontSize: 10 }}
|
size="small"
|
||||||
variant="outlined"
|
sx={{ fontSize: 10 }}
|
||||||
color="inherit"
|
variant="outlined"
|
||||||
onClick={() => maskDisabled(true)}
|
color="inherit"
|
||||||
>
|
onClick={() => maskDisabled(true)}
|
||||||
disable
|
>
|
||||||
</Button>
|
disable
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Table data={{ nodes: shown_data }} theme={entities_theme} sort={entity_sort} layout={{ custom: true }}>
|
<Table data={{ nodes: shown_data }} theme={entities_theme} sort={entity_sort} layout={{ custom: true }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user