From: Hannu Nyman Date: Sat, 16 May 2020 16:05:22 +0000 (+0300) Subject: luci-app-acl: fix typo X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=b89e81e373cf8f1760462aac082d26d3cd0ecbaa;p=project%2Fluci.git luci-app-acl: fix typo Fix typo: Acess -> Access Signed-off-by: Hannu Nyman --- 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 93a068c746..52ce13c766 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'));