Workflow logic error be careful

There is a bug :



Wondering if i was the only one meeting this problem ???

What’s the bug?

1 Like

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:

2 Likes

This topic was automatically closed after 14 days. New replies are no longer allowed.