Skip to content

Commit e60133f

Browse files
authored
fix grid headers using base font on theme override (#1057)
1 parent 42fb515 commit e60133f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/internal/data-grid/render/data-grid-render.header.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function drawGridHeaders(
7474
}
7575

7676
if (theme !== outerTheme) {
77-
ctx.font = theme.baseFontFull;
77+
ctx.font = theme.headerFontFull;
7878
}
7979
const selected = selection.columns.hasIndex(c.sourceIndex);
8080
const noHover = dragAndDropState !== undefined || isResizing;

0 commit comments

Comments
 (0)