summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
authorRichard Yu <yurichard3839@gmail.com>2019-11-04 00:19:33 +0800
committerRichard Yu <yurichard3839@gmail.com>2019-11-04 00:19:33 +0800
commitfa15370f0eed64ad660d80f582e4da485ff89d24 (patch)
treec4c37393cee273ac27d15b6202966663340e1f94 /modules/luci-base
parent6c7b1e156d8a3342864a5e5e03a8331f6819109f (diff)
luci-base: form.js: fix GridSection not using user-input name when add
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/form.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js
index f4cce17fe..7de5e0f76 100644
--- a/modules/luci-base/htdocs/luci-static/resources/form.js
+++ b/modules/luci-base/htdocs/luci-static/resources/form.js
@@ -1390,9 +1390,9 @@ var CBIGridSection = CBITableSection.extend({
CBIAbstractSection.prototype.tab.call(this, name, title, description);
},
- handleAdd: function(ev) {
+ handleAdd: function(ev, name) {
var config_name = this.uciconfig || this.map.config,
- section_id = this.map.data.add(config_name, this.sectiontype);
+ section_id = this.map.data.add(config_name, this.sectiontype, name);
this.addedSection = section_id;
return this.renderMoreOptionsModal(section_id);