Skip to content

Commit 692e0bf

Browse files
committed
fix: overlapping text in dimension column (#8794)
1 parent b8f2a32 commit 692e0bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web-common/src/features/dashboards/pivot/NestedTable.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
type DimensionColumnProps,
1616
type MeasureColumnProps,
1717
} from "./pivot-column-definition";
18-
import { isShowMoreRow } from "./pivot-utils";
1918
import {
2019
calculateMeasureWidth,
2120
calculateRowDimensionWidth,
2221
COLUMN_WIDTH_CONSTANTS as WIDTHS,
2322
} from "./pivot-column-width-utils";
23+
import { isShowMoreRow } from "./pivot-utils";
2424
import type { PivotDataRow } from "./types";
2525
2626
// State props
@@ -445,12 +445,12 @@
445445
446446
.with-row-dimension tr > th:first-of-type {
447447
@apply sticky left-0 z-20;
448-
/* @apply bg-surface-subtle; */
448+
@apply bg-surface-base;
449449
}
450450
451451
.with-row-dimension tr > td:first-of-type {
452452
@apply sticky left-0 z-10;
453-
/* @apply bg-surface-subtle; */
453+
@apply bg-surface-base;
454454
}
455455
456456
.with-row-dimension tr:hover > td:first-of-type {

0 commit comments

Comments
 (0)