mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
fix typo
This commit is contained in:
@@ -35,7 +35,7 @@ import { useState, useContext, useEffect, useCallback, useLayoutEffect } from 'r
|
|||||||
|
|
||||||
import { IconContext } from 'react-icons';
|
import { IconContext } from 'react-icons';
|
||||||
import { toast } from 'react-toastify';
|
import { toast } from 'react-toastify';
|
||||||
import DashboarDevicesDialog from './DashboardDevicesDialog';
|
import DashboardDevicesDialog from './DashboardDevicesDialog';
|
||||||
import DeviceIcon from './DeviceIcon';
|
import DeviceIcon from './DeviceIcon';
|
||||||
|
|
||||||
import * as EMSESP from './api';
|
import * as EMSESP from './api';
|
||||||
@@ -581,7 +581,7 @@ const DashboardDevices: FC = () => {
|
|||||||
{renderDeviceData()}
|
{renderDeviceData()}
|
||||||
{renderDeviceDetails()}
|
{renderDeviceDetails()}
|
||||||
{selectedDeviceValue && (
|
{selectedDeviceValue && (
|
||||||
<DashboarDevicesDialog
|
<DashboardDevicesDialog
|
||||||
open={deviceValueDialogOpen}
|
open={deviceValueDialogOpen}
|
||||||
onClose={deviceValueDialogClose}
|
onClose={deviceValueDialogClose}
|
||||||
onSave={deviceValueDialogSave}
|
onSave={deviceValueDialogSave}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ type DashboardDevicesDialogProps = {
|
|||||||
progress: boolean;
|
progress: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
const DashboarDevicesDialog = ({
|
const DashboardDevicesDialog = ({
|
||||||
open,
|
open,
|
||||||
onClose,
|
onClose,
|
||||||
onSave,
|
onSave,
|
||||||
@@ -224,4 +224,4 @@ const DashboarDevicesDialog = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default DashboarDevicesDialog;
|
export default DashboardDevicesDialog;
|
||||||
|
|||||||
Reference in New Issue
Block a user