From a90b33d35e6449f1d33fdf2c28260c811e7bf397 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Mon, 20 Nov 2023 17:41:56 +0100 Subject: luci-mod-network: nitpick of CNAME, MX, SRV syntax formatting Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/network/dhcp.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modules/luci-mod-network/htdocs') diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index 04b57a277d..0a6ba5eee3 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -647,15 +647,15 @@ return view.extend({ ss.sortable = true; ss.rowcolors = true; - so = ss.option(form.Value, 'srv', _('SRV'), _('Syntax: _service._proto.example.com.')); + so = ss.option(form.Value, 'srv', _('SRV'), _('Syntax: _service._proto.example.com.')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = '_sip._tcp.example.com'; + so.placeholder = '_sip._tcp.example.com.'; so = ss.option(form.Value, 'target', _('Target'), _('CNAME or fqdn')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = 'sip.example.com'; + so.placeholder = 'sip.example.com.'; so = ss.option(form.Value, 'port', _('Port')); so.rmempty = false; @@ -687,12 +687,12 @@ return view.extend({ so = ss.option(form.Value, 'domain', _('Domain')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = 'example.com'; + so.placeholder = 'example.com.'; so = ss.option(form.Value, 'relay', _('Relay')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = 'relay.example.com'; + so.placeholder = 'relay.example.com.'; so = ss.option(form.Value, 'pref', _('Priority'), _('Ordinal: lower comes first.')); so.rmempty = true; @@ -713,12 +713,12 @@ return view.extend({ so = ss.option(form.Value, 'cname', _('Domain')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = 'www.example.com'; + so.placeholder = 'www.example.com.'; so = ss.option(form.Value, 'target', _('Target')); so.rmempty = false; so.datatype = 'hostname'; - so.placeholder = 'example.com'; + so.placeholder = 'example.com.'; o = s.taboption('hosts', form.SectionValue, '__hosts__', form.GridSection, 'domain', null, _('Hostnames are used to bind a domain name to an IP address. This setting is redundant for hostnames already configured with static leases, but it can be useful to rebind an FQDN.')); -- cgit v1.2.3