Skip to content

Commit

Permalink
fix: list grid property change (#48683)
Browse files Browse the repository at this point in the history
  • Loading branch information
coderz-w committed Apr 29, 2024
1 parent 1a6e9e0 commit 0dd5617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function List<T>({
maxWidth: `${100 / columnCount}%`,
};
}
}, [grid?.column, currentBreakpoint]);
}, [JSON.stringify(grid), currentBreakpoint]);

let childrenContent: React.ReactNode = isLoading && <div style={{ minHeight: 53 }} />;
if (splitDataSource.length > 0) {
Expand Down

0 comments on commit 0dd5617

Please sign in to comment.