From aa6f5b496d9f70fffc38be7138464ecd983865c1 Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Mon, 13 Oct 2025 17:17:51 +0200 Subject: [PATCH] feat: add DHCP client as a critical field --- ui/src/routes/devices.$id.settings.network.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/routes/devices.$id.settings.network.tsx b/ui/src/routes/devices.$id.settings.network.tsx index d36bd9dd..7be6ef51 100644 --- a/ui/src/routes/devices.$id.settings.network.tsx +++ b/ui/src/routes/devices.$id.settings.network.tsx @@ -191,6 +191,7 @@ export default function SettingsNetworkRoute() { // Label is for the UI, key is the internal key of the field { label: "IPv4 mode", key: "ipv4_mode" }, { label: "IPv6 mode", key: "ipv6_mode" }, + { label: "DHCP client", key: "dhcp_client" }, ] as { label: string; key: keyof NetworkSettings }[]; const criticalChanged = criticalFields.some(field => dirty[field.key]);