Skip to content

Commit

Permalink
Fix #3089 (#3098)
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij authored Dec 24, 2024
1 parent ea5bd55 commit 07eda9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/DataGrid/FluentDataGrid.razor.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function enableColumnResizing(gridElement) {
headers.forEach(header => {
columns.push({
header,
size: `minmax(${minWidth}px,1fr)`,
size: `minmax(${minWidth}px,auto)`,
});

const onPointerMove = (e) => requestAnimationFrame(() => {
Expand Down

0 comments on commit 07eda9f

Please sign in to comment.