1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00

fix: table group backdrop width

This commit is contained in:
杨国璇
2025-09-11 14:56:44 +08:00
parent 3ff3484b89
commit b56cc7bdea
2 changed files with 2 additions and 2 deletions

View File

@@ -103,7 +103,7 @@ class GroupContainer extends Component {
}; };
let backDropStyle = { let backDropStyle = {
height: backdropHeight, height: backdropHeight,
width: leftPaneWidth + scrollLeft ? GROUP_VIEW_OFFSET : 0, width: leftPaneWidth + (scrollLeft ? GROUP_VIEW_OFFSET : 0),
zIndex: Z_INDEX_GROUP_BACKDROP, zIndex: Z_INDEX_GROUP_BACKDROP,
}; };

View File

@@ -100,7 +100,7 @@ class GroupContainer extends Component {
}; };
let backDropStyle = { let backDropStyle = {
height: backdropHeight, height: backdropHeight,
width: leftPaneWidth + scrollLeft ? GROUP_VIEW_OFFSET : 0, width: leftPaneWidth + (scrollLeft ? GROUP_VIEW_OFFSET : 0),
zIndex: metadataZIndexes.GROUP_BACKDROP zIndex: metadataZIndexes.GROUP_BACKDROP
}; };