Skip to content

Commit 8118859

Browse files
committed
RI-6058 fix column moved when expanded
1 parent ff3d034 commit 8118859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/ui/src/components/virtual-grid/VirtualGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ const VirtualGrid = (props: IProps) => {
220220
style={{
221221
width: lastColumn?.minWidth,
222222
height: getRowHeight(rowIndex),
223-
marginLeft: width - lastColumn?.minWidth - (hasHorizontalScrollOffset ? 29 : 13)
223+
marginLeft: width - lastColumn?.minWidth - (hasHorizontalScrollOffset ? 23 : 13)
224224
}}
225225
>
226226
{lastColumn?.render && isObject(rowData) && lastColumn?.render(rowData, expanded) }

0 commit comments

Comments
 (0)