There is a bug :
Wondering if i was the only one meeting this problem ???
Whatâs the bug?
A listâs :count WILL NEVER be empty. The listâs count is a number that tells you how many items are in the list.
Even if the count is ZERO, zero IS NOT âemptyâ. Zero is a number.
âemptyâ in Bubble is equivalent to the special JavaScript object null
(which represents a value that is not undefined, but that has âno particular valueâ).
If youâre trying to assess the lack of items in a list, youâre looking for :count is 0 (true if the list has no items) or similar. For more detail on this, look here:
This topic was automatically closed after 14 days. New replies are no longer allowed.