diff --git a/src/components/device-page/info.tsx b/src/components/device-page/info.tsx index fc3021d41..4df5b666f 100644 --- a/src/components/device-page/info.tsx +++ b/src/components/device-page/info.tsx @@ -169,7 +169,13 @@ export class DeviceInfo extends Component< { key: 'network_address', translationKey: 'network_address', - render: (device: Device) =>
{toHex(device.network_address)}
, + render: (device: Device) => ( +
+ {toHex(device.network_address)} + {' / '} + {device.network_address} +
+ ), }, { key: 'date_code', diff --git a/src/components/zigbee/DevicesTable.tsx b/src/components/zigbee/DevicesTable.tsx index 702460340..1190fbfb8 100644 --- a/src/components/zigbee/DevicesTable.tsx +++ b/src/components/zigbee/DevicesTable.tsx @@ -121,7 +121,15 @@ export function DevicesTable( }) => ( <>
{device.ieee_address}
-
({toHex(device.network_address, 4)})
+
+ + ({toHex(device.network_address, 4)}) + +
), }, diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index a1163f715..f818ffe48 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -2663,6 +2663,8 @@ "min_rep_interval": "Min rep interval", "model": "Model", "network_address": "Network address", + "network_address_hex": "Network address in hexadecimal format", + "network_address_dec": "Network address in decimal format", "none": "None", "output_clusters": "Output clusters", "pic": "Pic",