timeweb/inputBubbles

Add parameter id into _values

Opened this issue · 0 comments

Now the variable _values contains only title parameter. I think that must add id parameter and change variable _values into array of objects.

Before:

var _values = ['title1', 'title2', .....]

After:

var _values = [{id: 1, title: 'title1'}, {id: 2, title: 'title2'}, .....]