I have a collection used in a gallery. On start of the app, a search box by default is blank, filters the gallery using IN operator.
Filter(myitems, SearchField.Text in Title)
This filter works and shows all my records, but suddenly stops working during App.OnStart. The only way to enable it again is by typing values in the search field and deleting the values, then all records appear in the gallery.
Any thoughts on how to fix?