diff --git a/client/modules/User/components/Collection.jsx b/client/modules/User/components/Collection.jsx index 95ccd4f3..1a4c07d4 100644 --- a/client/modules/User/components/Collection.jsx +++ b/client/modules/User/components/Collection.jsx @@ -394,7 +394,10 @@ class Collection extends React.Component { } _renderEmptyTable() { - if (!this.hasCollectionItems()) { + const isLoading = this.props.loading; + const hasCollectionItems = this.props.collection != null && this.props.collection.items.length > 0; + + if (!isLoading && !hasCollectionItems) { return (
No sketches in collection
); } return null;