Hello forum!
I have a problem comparing the values of a MultiDropdown with an array of subcategories.
I leave here a image to get more context
So, I have an array of subcategories like this:
[
{
"name": "Subcategory 1",
"color": "#0CBBAA"
},
{
"name": "Subcategory 2",
"color": "#0CBBAA"
},
{
"name": "Subcategory 3",
"color": "#0CBBAA"
}
]
And my dropdown receives values in an array like this:
[
{
"subcategories": [
{
"value": 1,
"name": "Subcategory 1"
},
{
"value": 2,
"name": "Subcategory 2"
},
{
"value": 3,
"name": "Subcategory 3"
}
]
}
]
What I need to do is, if a subcategory is selected in the dropdown, filter a list in the repeating group to display items based on the “name” value.
Currently, I’m trying something like this, but I haven’t achieved the desired results, except when I use “:first item.” However, that doesn’t work for me because I need to iterate through all the subcategories.

How i can solve this? any examples?
I appreciated constructive replies ![]()


