Hello.
I'm trying to create table to use in items property for drop down.
One table is output of filter function that is based on the source of the app.
The other table is my hardcoded values that I'd like to see in the dropdown next to the ones from filter function.
How can I append/merge them into one?
What I'm trying to do is basically this:
[1,2,3,4] + [5,6,7] -> [1,2,3,4,5,6,7]
But one of them would be result of the filter function 😛