luci-base: ui.js: save filled out but not added dynlist items on submit

Fixes: #2938
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-07-30 13:29:11 +02:00
parent e0771aa49f
commit 3880c3f22f

View file

@ -1327,11 +1327,16 @@ var UIDynamicList = UIElement.extend({
getValue: function() {
var items = this.node.querySelectorAll('.item > input[type="hidden"]'),
input = this.node.querySelector('.add-item > input[type="text"]'),
v = [];
for (var i = 0; i < items.length; i++)
v.push(items[i].value);
if (input && input.value != null && input.value.match(/\S/) &&
v.filter(function(s) { return s == input.value }).length == 0)
v.push(input.value);
return v;
},