diff options
Diffstat (limited to 'applications/luci-app-vnstat2/htdocs/luci-static/resources/view')
-rw-r--r-- | applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js index 14e968a071..46781442a3 100644 --- a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js @@ -8,6 +8,8 @@ 'require form'; 'require tools.widgets as widgets'; +var isReadonlyView = !L.hasViewPermission() || null; + return view.extend({ handleDeleteModal: function(m, iface, ev) { L.showModal(_('Delete interface <em>%h</em>').format(iface), [ @@ -88,7 +90,8 @@ return view.extend({ this.interfaces[i], E('button', { 'class': 'btn cbi-button-remove', - 'click': ui.createHandlerFn(view, 'handleDeleteModal', m, this.interfaces[i]) + 'click': ui.createHandlerFn(view, 'handleDeleteModal', m, this.interfaces[i]), + 'disabled': isReadonlyView }, [ _('Deleteā¦') ]) ]); } |