Hi,
I want to insert multiple tags but but I cannot separate the tags
Rather than having tags separated like [“one”, “two”, “three”]
but tags are combined as such: [“one,two,three”]
export function tagsInput_keyPress(event) {
if (event.key === "Enter") {
var tags = Array($w('#tagsInput').value)
let insert = {
"tags": tags
}
wixData.insert("productsManagement", insert)
}
}