diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-03-30 20:44:13 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-03-30 20:44:13 +0200 |
commit | 0eb3aeb0105be5477ed12a57ce3028d08d5f90c6 (patch) | |
tree | dc18d83904da780c20ba65a80ec4f2e606617b8e /applications/luci-app-firewall/htdocs/luci-static/resources | |
parent | 71106351344ea390e0f510e3f9ad34685bacc1ee (diff) |
luci-app-firewall: fix misspelling of restrictions
Fixes: #5749
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index 2afb438969..c579c4aab1 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -240,7 +240,7 @@ return view.extend({ var stop_date = uci.get('firewall', section_id, 'stop_date'); if (weekdays || monthdays || start_time || stop_time || start_date || stop_date ) - return _('Time restritions are enabled for this rule'); + return _('Time restrictions are enabled for this rule'); return null; }; |