mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
show writable in web export, dev.4c
This commit is contained in:
@@ -323,7 +323,8 @@ const DashboardDevices: FC = () => {
|
||||
accessor: (dv: any) => (typeof dv.v === 'number' ? new Intl.NumberFormat().format(dv.v) : dv.v),
|
||||
name: LL.VALUE(0)
|
||||
},
|
||||
{ accessor: (dv: any) => DeviceValueUOM_s[dv.u], name: 'UoM' }
|
||||
{ accessor: (dv: any) => DeviceValueUOM_s[dv.u], name: 'UoM' },
|
||||
{ accessor: (dv: any) => (dv.c ? '1' : '0'), name: 'writeable' }
|
||||
];
|
||||
|
||||
const deviceIndex = coreData.devices.findIndex((d) => d.id === device_select.state.id);
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define EMSESP_APP_VERSION "3.6.3-dev.4b"
|
||||
#define EMSESP_APP_VERSION "3.6.3-dev.4c"
|
||||
|
||||
Reference in New Issue
Block a user