Skip to content

Commit

Permalink
Solving errors in clusters list (#2651)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammont82 committed Aug 9, 2024
1 parent fb7ebd8 commit 0adb6a9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ const ClustersListToolbar: React.FC<ClustersListToolbarProps> = ({
</>
);
const { t } = useTranslation();

React.useEffect(() => {
window.addEventListener('resize', () => setStatusExpanded(false));
}, []);

return (
<Toolbar
id="clusters-list-toolbar"
Expand Down

0 comments on commit 0adb6a9

Please sign in to comment.