diff options
author | Jo-Philipp Wich <jo@mein.io> | 2024-02-21 22:11:53 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2024-02-21 22:11:53 +0100 |
commit | b8a045c67ad676e6766921354cd9914dce475acc (patch) | |
tree | a3b0b71d665a99f952bb98771c12bd35fc7fd93d /modules/luci-mod-system/htdocs | |
parent | 06c0fbbef736c7d4976614467064d094af8ccf85 (diff) |
luci-mod-system: remove bogus mount option
Drop the bogus `enabled_fsck` option which seems to be an automatic Lua->JS
conversion artifact.
Fixes: #6837
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-system/htdocs')
-rw-r--r-- | modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js | 2 |
1 files changed, 0 insertions, 2 deletions
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 7c26bf060a..269b4a9b2e 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 @@ -333,8 +333,6 @@ return view.extend({ o.textvalue = function(section_id) { return this.cfgvalue(section_id) || 'defaults' }; o.placeholder = 'defaults'; - s.taboption('advanced', form.Flag, 'enabled_fsck', _('Run filesystem check'), _('Run a filesystem check before mounting the device')); - // Swaps s = m.section(form.GridSection, 'swap', _('SWAP'), _('If your physical memory is insufficient unused data can be temporarily swapped to a swap-device resulting in a higher amount of usable <abbr title="Random Access Memory">RAM</abbr>. Be aware that swapping data is a very slow process as the swap-device cannot be accessed with the high datarates of the <abbr title="Random Access Memory">RAM</abbr>.')); |