Displaying Database Tags in a Repeater

Inspect your own code by using some console.logs and you will recognize what to do.

export function repeater1_itemReady($item, itemData, index){
    let tags = itemData.tipoActividad;
    let options = [];
    
    console.log(itemData)
    console.log(tags)
    
    for(var i = 0; i < tags.length; i++){
        options.push({"label":tags[i], "value":tags[i]});}
        $item("#selectionTags2").options = options;
    }
}   

Take a look into CONSOLE and inspect the results.

I need to display the tags included in my collection that has been collected via input element from a form.

I asume you have used something like —> 123-forms :roll_eyes: