Gallery is working fine in editing mode, when I use filters there are no issues. When I publish app and I use filters - gallery turns blank. I have already re-published app, cleared cache cookies, even repaired Edge. And I've tried another browser too. The Items formula is next:
/////////////////
If(
IsBlank(StatusBox.Selected.Value) And IsBlank(ReasonBox.Selected.Value) And IsBlank(UserBox.Value) And IsBlank(BOXDEVICENOTRETURNED.Selected.Value) And IsBlank(SerialBox.Value) And vFilterCheck = false,
Sort(EQPINVUA,Date,SortOrder.Descending),
Sort(Filter(EQPINVUA, Reason.Value = ReasonBox.Selected.Value || IsBlank(ReasonBox.Selected.Value),
Status.Value = StatusBox.Selected.Value || IsBlank(StatusBox.Selected.Value),
UserBox.Value in User Or IsBlank(UserBox.Value),
SerialBox.Value in Serial Or SerialBox.Value in 'Inventory â„–',
'Device was returned'.Value = BOXDEVICENOTRETURNED.Selected.Value || IsBlank(BOXDEVICENOTRETURNED.Selected.Value)
),
Date,
SortOrder.Descending
)
)
/////////////////
Issue appeared out of nowhere, and I have no clue how this is possible, when in developer mode it works, and in prod it doesn't.