diff options
author | Stan Grishin <stangri@melmac.ca> | 2024-01-20 17:09:28 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.ca> | 2024-01-20 17:10:21 +0000 |
commit | f162289fe4de00bf228ab66aaccff1235b41cfd9 (patch) | |
tree | 29c3c45b35617ace477ce6c606d1f7aca33edc11 /applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy | |
parent | f7ef1424661ea3663e9d4d233a213ae82674b58d (diff) |
luci-app-https-dns-proxy: remove unnecessary translation call
Thank you @hnyman!
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Diffstat (limited to 'applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy')
-rw-r--r-- | applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js index 253525fb4a..a67d720f79 100644 --- a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js +++ b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js @@ -129,7 +129,7 @@ return view.extend({ key = element[".name"]; description = element[".name"]; } - o.value(key, _("%s").format(description)); + o.value(key, description); }); o.depends("dnsmasq_config_update_option", "+"); o.retain = true; |