Skip to content

Commit

Permalink
[Fix-3663][web] Fix the issue of abnormal display of the DataStudio m…
Browse files Browse the repository at this point in the history
…odule when the window size changes (#3664)
  • Loading branch information
gphwxhq authored Jul 22, 2024
1 parent 337eb0d commit 26628f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dinky-web/src/pages/DataStudio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const DataStudio: React.FC<connect> = (props: any) => {
window.addEventListener('resize', onResize);
onResize();
return () => window.removeEventListener('resize', onResize);
}, []);
}, [bottomContainer, isProject]);

const loadData = () => {
queryDatabaseList();
Expand Down

0 comments on commit 26628f1

Please sign in to comment.