I have a Select input in a component. On the component level I define the list with a filter. In preview looks like the list is down to 2 items, however when I go to the input inside the component the filter is not applied. Is this a bug? It seems that the filtered options should be respected because obviously as a component you want it to be configurable outside not inside.
Data (on the component):
return [
{
id: 68,
investment_name: “Item 1”,
status: “current”,
},
{
id: 82,
investment_name: “Item 2”,
status: “potential”,
},
{
id: 82,
investment_name: “Item 3”,
status: “complete”,
},
];
Filter:
Data on component:
Inside the component on the select (extra item that was filtered out on component level):
Thanks!