From 359b927d3a9854569f8024faa1fafdd840d8788e Mon Sep 17 00:00:00 2001 From: Anton Kikin Date: Wed, 19 Feb 2020 03:24:06 +0300 Subject: [PATCH] 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 --- .../htdocs/luci-static/resources/view/ddns/overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 93106db62..2a0f2200f 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 -- 2.25.1