Hello everyone!
So, I’m using the Selection tags $w(“#imageTags”) to display the tags submitted by users. When I connect the selection tags element using the editor, it’s not showing anything. When using code, it returns an error:
Wix code SDK error: The SelectionTags.Option parameter of item at index 0 that is passed to the options method cannot be set to the value tiger. It must be of type object.
let pic = $w(‘#dynamicDataset’).getCurrentItem();
let allTags = pic.tags;
//console.log(tags);
$w(“#imageTags”).options = allTags;
What am I doing wrong?