diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2020-05-16 19:05:22 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2020-05-16 19:05:22 +0300 |
commit | b89e81e373cf8f1760462aac082d26d3cd0ecbaa (patch) | |
tree | b030bb034c2d6bed3f65c162d1db882ed985c5c8 | |
parent | 7f08f42f05dbd5a238defa9c9a6c1b4d95a6dfa7 (diff) |
luci-app-acl: fix typo
Fix typo: Acess -> Access
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
-rw-r--r-- | applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js b/applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js index 93a068c74..52ce13c76 100644 --- a/applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js +++ b/applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js @@ -300,7 +300,7 @@ return view.extend({ o = s.option(cbiACLLevel, '_write', _('Write access')); o.modalonly = false; - o = s.option(form.ListValue, '_level', _('Acess level')); + o = s.option(form.ListValue, '_level', _('Access level')); o.modalonly = true; o.value('write', _('full', 'All permissions granted')); o.value('read', _('readonly', 'Only read permissions granted')); |