Read selection tags from a dataset

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?

https://www.wix.com/velo/example/filter-with-multiple-options

https://www.wix.com/velo/reference/$w/selectiontags

https://www.wix.com/velo/forum/community-discussion/filter-my-data-set-with-dropdowns-and-selection-tags

Should be enough stuff to get your answer of all the given informations & examples😉