Skip to content

Commit 55928c3

Browse files
committed
fix: fullHeight -> full-height
1 parent c91ec51 commit 55928c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/TableWithControlsLayout/TableWithControlsLayout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
box-sizing: border-box;
1010
min-width: 100%;
1111

12-
&_fullHeight {
12+
&_full-height {
1313
min-height: calc(100% - var(--sticky-tabs-height, 0px));
1414
}
1515

src/components/TableWithControlsLayout/TableWithControlsLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const TableWithControlsLayout = ({
2929
className,
3030
fullHeight,
3131
}: TableWithControlsLayoutItemProps) => {
32-
return <div className={b({fullHeight}, className)}>{children}</div>;
32+
return <div className={b({'full-height': fullHeight}, className)}>{children}</div>;
3333
};
3434

3535
TableWithControlsLayout.Controls = function TableControls({

0 commit comments

Comments
 (0)