Can't disable favorites on list page

Ahh, didn’t think about that.

I don’t think this would work with the ‘See All’ since it’s ultimately a list layout instead of a detail layout, but to create your own favorites selector above your horizontal list of tiles, there is a way.

  • First you will need to create a basic text column and set it to User Specific. This will hold the choice value.
  • Next create a choice component with 2 options (All, Favorites) and display it in the horizontal layout.
  • In the items sheet where you will allow favorites, you can create another user specific boolean column. This can be set using a switch or checkbox component on the details screen of those items. The selected value will write to the user specific column you created.
  • Now create two inline lists on the screen where you have your existing list. One with no filter and one with another filter based on the favorite the user set with the checkbox or switch. Then you display either one based on the choice from the choice component.