formatting, add missing text

This commit is contained in:
MichaelDvP
2022-09-02 15:33:42 +02:00
parent 4f42ae7efc
commit 85308e52a7
5 changed files with 36 additions and 25 deletions

View File

@@ -639,7 +639,7 @@ const DashboardData: FC = () => {
if (coreData && coreData.devices.length > 0 && deviceDialog !== -1) {
return (
<Dialog open={deviceDialog !== -1} onClose={() => setDeviceDialog(-1)}>
<DialogTitle>Device Details</DialogTitle>
<DialogTitle>{LL.DEVICE_DETAILS()}</DialogTitle>
<DialogContent dividers>
<List dense={true}>
<ListItem>
@@ -667,7 +667,7 @@ const DashboardData: FC = () => {
</DialogContent>
<DialogActions>
<Button variant="outlined" onClick={() => setDeviceDialog(-1)} color="secondary">
Close
{LL.CLOSE()}
</Button>
</DialogActions>
</Dialog>