show writable in web export, dev.4c

This commit is contained in:
MichaelDvP
2023-10-23 14:53:43 +02:00
parent 5cf0d8d204
commit 5e7e1c30ca
2 changed files with 3 additions and 2 deletions

View File

@@ -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);

View File

@@ -1 +1 @@
#define EMSESP_APP_VERSION "3.6.3-dev.4b"
#define EMSESP_APP_VERSION "3.6.3-dev.4c"