From fb18c278a4eb5143b377e1ff148d3ed2e1f84c19 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 11 Aug 2019 20:54:49 +0200 Subject: [PATCH] luci-base: form.js: CBISectionValue: properly forward dependency checks Signed-off-by: Jo-Philipp Wich --- modules/luci-base/htdocs/luci-static/resources/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {}, -- 2.25.1