diff options
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 2 |
1 files changed, 2 insertions, 0 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 4b786e83c5..8a8c27c718 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 @@ -91,6 +91,8 @@ return view.extend({ _this.services[service.name.replace('.json','')] = true }); + this.services = Object.fromEntries(Object.entries(this.services).sort()); + list_service.forEach(function (service) { if (!_this.services[service]) _this.services[service] = false; |