diff --git a/interface/src/project/DashboardDevices.tsx b/interface/src/project/DashboardDevices.tsx index 3d00c1d9c..356c372b8 100644 --- a/interface/src/project/DashboardDevices.tsx +++ b/interface/src/project/DashboardDevices.tsx @@ -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); diff --git a/src/version.h b/src/version.h index 015303d8c..de043e618 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define EMSESP_APP_VERSION "3.6.3-dev.4b" +#define EMSESP_APP_VERSION "3.6.3-dev.4c"