From ca64a8127fe253619847783863d90f4a91e391dc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 16 Apr 2025 10:31:17 -1000 Subject: [PATCH] tweaks --- .../integrations/integration-panels/dhcp/dhcp-config-panel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/integrations/integration-panels/dhcp/dhcp-config-panel.ts b/src/panels/config/integrations/integration-panels/dhcp/dhcp-config-panel.ts index 0c3c169f52..bcf34987f7 100644 --- a/src/panels/config/integrations/integration-panels/dhcp/dhcp-config-panel.ts +++ b/src/panels/config/integrations/integration-panels/dhcp/dhcp-config-panel.ts @@ -80,7 +80,7 @@ export class DHCPConfigPanel extends LitElement { private _dataWithIds = memoizeOne((data) => data.map((row) => ({ ...row, - id: row.address, + id: row.mac_address, })) );