diff options
author | MartB <MartB@users.noreply.github.com> | 2019-11-29 01:26:38 +0100 |
---|---|---|
committer | MartB <mart.b@outlook.de> | 2019-11-29 01:29:05 +0100 |
commit | 0d5360690842f275be1cf41b10b8a7a060b3848a (patch) | |
tree | f6d20f000f8c866e15829345a1087388ddad9298 | |
parent | 58b3ef44daa558fa9b26687959be441fea821ec0 (diff) |
luci-app-ddns: fix syntax error
unexpected token: punc ) caused by extra ,
Signed-off-by: MartB <mart.b@outlook.de>
-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 50066d8d4..93106db62 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 @@ -145,7 +145,7 @@ return L.view.extend({ var m, s, o; - m = new form.Map('ddns', _('Dynamic DNS'),); + m = new form.Map('ddns', _('Dynamic DNS')); var is = m.section(form.NamedSection, 'global', 'ddns', _('Information')); |