Skip to content

Commit

Permalink
fix(GridLayout): fix condition of reload (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
artemipanchuk authored Dec 17, 2024
1 parent 88897fd commit a3ddaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GridLayout/GridLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default class GridLayout extends React.PureComponent {
() => this.reloadItems(),
reloadIntervalRemains <= 0 ? autoupdateIntervalMs : reloadIntervalRemains,
);
} else if (force || (!isPageHidden && !editMode)) {
} else if (force) {
reloadItems(targetPlugins, {silentLoading, noVeil: true});
}
}
Expand Down

0 comments on commit a3ddaae

Please sign in to comment.