fix(thread-list): Prevent empty state from showing when loading list

- EmptyState should only be displayed when the thread-list is actually
empty, not while it is being loaded
- Update ObservableListDataSource to have a state of loaded only when
the requested range is > 0, i.e. when we are actually requesting threads
This commit is contained in:
Juan Tejada 2016-04-11 13:15:29 -07:00
parent 5e4eea2fa2
commit ded1b657d3

View file

@ -44,7 +44,7 @@ class ObservableListDataSource extends ListTabular.DataSource
@_countEstimate
loaded: ->
@_resultSet isnt null
@_resultSet isnt null and @_resultDesiredLast > 0
empty: =>
not @_resultSet or @_resultSet.empty()