Skip to content

Commit

Permalink
Web: Files: hidden annoying loader on first load
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeySafronov committed Jul 14, 2021
1 parent e81c3df commit e9af937
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion products/ASC.Files/Client/src/pages/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,9 @@ class PureHome extends React.Component {
secondaryProgressDataStoreIcon,
selectionLength,
selectionTitle,
firstLoad,
} = this.props;
if (isLoading !== prevProps.isLoading) {
if (isLoading !== prevProps.isLoading && !firstLoad) {
if (isLoading) {
showLoader();
} else {
Expand Down

0 comments on commit e9af937

Please sign in to comment.