
Hi,
I have an application that uses sharepoint lists as a database. After being published, all lists load except one. The pages that use this list are blank and no data from this single list is loaded. Until yesterday everything was working and apparently out of nowhere, it stopped loading.
The app works in development but not when published
Development page:
Published:
What i've tried:
1. Republishing the app
2. Removing the list from the app and adding it again and republishing
Nothing works
I need help!
Ok.
I managed to fix it
Basically i had a text input to filter the gallery as:
Filter(Database,textinput.Value = "" || filtercolumn = textinput.Value)
it used to work just fine, even with the new controls, but now it doesn't, the way around i found is:
Filter(Database,Len(textinput.Value) = 0 || filtercolumn = textinput.Value)
Now it works just fine. I wonder if there might have been a change in PowerApps in the last few days