diff options
author | Stan Grishin <stangri@melmac.net> | 2021-08-04 20:16:04 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.net> | 2021-08-04 20:16:04 +0000 |
commit | 1b4936a6e28d9977b79a089d2cc235c7a8be11d3 (patch) | |
tree | eeeb264c3e914725ee575cf52f8b5cf78b0aa574 /applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | |
parent | 1554829395fea501c61cd036dfb43e85ab127308 (diff) |
luci-app-firewall: replace hh.mm.ss with hh:mm:ss
Signed-off-by: Stan Grishin <stangri@melmac.net>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index df49dcf80c..435728a490 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -458,11 +458,11 @@ return view.extend({ for (var i = 1; i <= 31; i++) o.value(i); - o = s.taboption('timed', form.Value, 'start_time', _('Start Time (hh.mm.ss)')); + o = s.taboption('timed', form.Value, 'start_time', _('Start Time (hh:mm:ss)')); o.modalonly = true; o.datatype = 'timehhmmss'; - o = s.taboption('timed', form.Value, 'stop_time', _('Stop Time (hh.mm.ss)')); + o = s.taboption('timed', form.Value, 'stop_time', _('Stop Time (hh:mm:ss)')); o.modalonly = true; o.datatype = 'timehhmmss'; |