From: Jo-Philipp Wich Date: Sun, 11 Aug 2019 18:54:49 +0000 (+0200) Subject: luci-base: form.js: CBISectionValue: properly forward dependency checks X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fb18c278a4eb5143b377e1ff148d3ed2e1f84c19;p=oweals%2Fluci.git luci-base: form.js: CBISectionValue: properly forward dependency checks Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index b8d97c751..4cdef2e69 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -1677,7 +1677,7 @@ var CBISectionValue = CBIValue.extend({ checkDepends: function(section_id) { this.subsection.checkDepends(); - return this.super('checkDepends'); + return CBIValue.prototype.checkDepends.apply(this, [ section_id ]); }, write: function() {},