diff options
author | Anton Kikin <a.kikin@tano-systems.com> | 2020-02-19 03:24:06 +0300 |
---|---|---|
committer | Anton Kikin <a.kikin@tano-systems.com> | 2020-02-19 03:24:06 +0300 |
commit | 359b927d3a9854569f8024faa1fafdd840d8788e (patch) | |
tree | 4eef1312fd324d59d7e2c3785e0a0a95d4a4492e /applications/luci-app-ddns | |
parent | c3b07fb3586500afb6395bef6fe05ac8ae008df7 (diff) |
luci-app-ddns: fix update interval unit values in combobox
Value "hours" is used twice instead of "hours" and "days".
Signed-off-by: Anton Kikin <a.kikin@tano-systems.com>
Diffstat (limited to 'applications/luci-app-ddns')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index 93106db62b..2a0f2200f5 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -852,7 +852,7 @@ return L.view.extend({ o.default = "minutes" o.value("minutes", _("minutes")); o.value("hours", _("hours")); - o.value("hours", _("days")); + o.value("days", _("days")); // retry_count |