From: Jo-Philipp Wich Date: Thu, 16 Apr 2020 13:35:51 +0000 (+0200) Subject: luci-mod-system: mounts.js: disable umount button in readonly map X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=01129d5297fa83069a2b1953e19184fe152d8b90;p=oweals%2Fluci.git luci-mod-system: mounts.js: disable umount button in readonly map Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js index 7ee91f5ae..e0a922656 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js @@ -212,7 +212,8 @@ return view.extend({ '%.2f%% (%1024.2mB)'.format(100 / this.mounts[i].size * used, used), umount ? E('button', { 'class': 'btn cbi-button-remove', - 'click': ui.createHandlerFn(view, 'handleUmount', m, this.mounts[i].mount) + 'click': ui.createHandlerFn(view, 'handleUmount', m, this.mounts[i].mount), + 'disabled': this.map.readonly || null }, [ _('Unmount') ]) : '-' ]); }