From 37466eaa008dca1c7328651cacf9072e04870b39 Mon Sep 17 00:00:00 2001 From: Vincent Baaij Date: Tue, 1 Jul 2025 11:19:19 +0200 Subject: [PATCH] Set corrected initial height for actual-resize-handler --- src/Core/Components/DataGrid/FluentDataGrid.razor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Components/DataGrid/FluentDataGrid.razor.js b/src/Core/Components/DataGrid/FluentDataGrid.razor.js index a540a0045d..49e84a4b53 100644 --- a/src/Core/Components/DataGrid/FluentDataGrid.razor.js +++ b/src/Core/Components/DataGrid/FluentDataGrid.razor.js @@ -289,7 +289,7 @@ export function enableColumnResizing(gridElement, resizeColumnOnAllRows = true) div.style.position = 'absolute'; div.style.cursor = 'col-resize'; div.style.userSelect = 'none'; - div.style.height = height + 'px'; + div.style.height = (height - 5) + 'px'; div.style.width = '6px'; div.style.opacity = 'var(--fluent-data-grid-header-opacity)'