Looks like in Mobile, a list with empty items still counts the empty items. For example, imagine a list like this:
[ null, null, null, 09823049823x092834093284]
This can happen in various circumstances, e.g. if the Create-or-Edit pattern is used.
In Bubble web it would be:
- :count = 1
- :first item =
09823049823x092834093284
- :each item’s unique_id:
09823049823x092834093284
In Bubble native, it is:
- :count = 4
- :first-item
null
- :each item’s unique_id:
null, null, null, 09823049823x092834093284
However, if you take the list and :filter(is empty = no)
then it behaves the same way it does in Bubble desktop.