I have a text box that I'm using as a search bar on this page that is connected to a Gallery.
When I'm testing the app in a browser and during editing, there are no errors and everything works just fine. Once published, on a mobile device once you reach this specific screen, the gallery displays the correct number of rows of items, but data is not populated.
Code for Items in the Gallery:
If(
IsBlank(TextInput1.Text),
ProductSelections,
SortByColumns(
Search(
'[dbo].[AOC_Items]',
TextInput1.Text,
"Item",
"Description",
"PreferVendor"
),
"Item",
Ascending)
)