From a2c6ec1f276111dd6c1ea6b4797eacc8c91ef5a1 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Fri, 29 May 2026 02:06:53 -0400 Subject: [PATCH] Development --- .../app/pages/networklayout/content.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docker/routlin-dash/app/pages/networklayout/content.json b/docker/routlin-dash/app/pages/networklayout/content.json index a1fcd9e..f6099ae 100644 --- a/docker/routlin-dash/app/pages/networklayout/content.json +++ b/docker/routlin-dash/app/pages/networklayout/content.json @@ -215,21 +215,24 @@ { "type": "readonly_select", "label": "Gateway", - "name": "gateway" + "name": "gateway", + "hint": "Gateway advertised to clients via DHCP." }, { "type": "overridable_textarea", "label": "DNS Server(s)", "name": "dns_server", "override_name": "dns_server_override", - "validate": "ip_in_subnet" + "validate": "ip_in_subnet", + "hint": "DNS server(s) advertised to clients via DHCP." }, { "type": "overridable_textarea", "label": "NTP Server(s)", "name": "ntp_server", "override_name": "ntp_server_override", - "validate": "ip_in_subnet" + "validate": "ip_in_subnet", + "hint": "NTP server(s) advertised to clients via DHCP." }, { "type": "field", @@ -237,7 +240,8 @@ "name": "dhcp_domain", "input_type": "text", "validate": "networkname", - "value": "local" + "value": "lan", + "hint": "Local domain name advertised to clients via DHCP (e.g. lan, home, corp)." } ] },