From 5b962e226fee1f213d9daa947ae2f6eda6cea21a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 17 Apr 2025 08:25:05 -1000 Subject: [PATCH] Update src/panels/config/integrations/integration-panels/dhcp/dhcp-config-panel.ts Co-authored-by: Simon Lamon <32477463+silamon@users.noreply.github.com> --- .../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 49bf34aea0..08274a5ceb 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 @@ -84,7 +84,7 @@ export class DHCPConfigPanel extends SubscribeMixin(LitElement) { const searchParams = extractSearchParamsObject(); const mac_address = searchParams.mac_address; if (mac_address) { - this.mac_address = mac_address.toUpperCase(); + this.macAddress = mac_address.toUpperCase(); } }