I made a gallery(named as GalleryFilter) to filter other gallery(connected with Sharepoint list).
In GalleryFilter, I added the button.
I set the items property of GalleryFilter as below;
GalleryFilter.Items = Table({Filter: "결재 중"}, {Filter: "승인"}, {Filter: "반려"})
I want the {Filter: "결재 중"} button to be selected when opening the app.
So I set the default property of GalleryFilter as below, but it didn't work.
GalleryFilter.Default = First(Table({Filter: "결재 중"}, {Filter: "승인"}, {Filter: "반려"}))
What should I do? Please help me.