luci-base: fix multiple parameter in cbi templates

In the dc0211803e commit, the parameter "multi" in ui.js is
replaced with "multiple" everywhere. Thus, it must also be changed
in the cbi templates.

Fixes: dc0211803e
Signed-off-by: Anton Kikin <a.kikin@tano-systems.com>
This commit is contained in:
Anton Kikin 2019-07-26 18:14:40 +03:00
parent 16f23de977
commit aeba90032f
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
id = cbid,
name = cbid,
sort = self.keylist,
multi = self.multiple,
multiple = self.multiple,
datatype = self.datatype,
optional = self.optional or self.rmempty,
readonly = self.readonly,

View file

@ -13,7 +13,7 @@
name = cbid,
size = self.size,
sort = self.keylist,
multi = true,
multiple = true,
widget = self.widget,
datatype = self.datatype,
optional = self.optional or self.rmempty,