You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes data sources return empty list. For example, when no items were found in a list. This is a common edge case which designers want to cover. See Refactoring UI p. 234-236
Sometimes surrounding UI is dependent on the empty state. In elm we do things like.
case results of
[ ] -> "No results"
_ -> viewResults results
The text was updated successfully, but these errors were encountered:
Sometimes data sources return empty list. For example, when no items were found in a list. This is a common edge case which designers want to cover. See Refactoring UI p. 234-236
Sometimes surrounding UI is dependent on the empty state. In elm we do things like.
The text was updated successfully, but these errors were encountered: