1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-14 06:11:16 +00:00

fix bug - drag and drop multi-selected items failed (#6436)

* fix bug - drag and drop multi-selected items failed

* fix bug - files are lost after moving items into selected folder
This commit is contained in:
Aries
2024-07-31 10:09:07 +08:00
committed by GitHub
parent 2838789744
commit 293470e39e
3 changed files with 42 additions and 25 deletions

View File

@@ -767,9 +767,11 @@ class DirentGridView extends React.Component {
showImagePopup={this.showImagePopup}
onGridItemContextMenu={this.onGridItemContextMenu}
onItemMove={this.props.onItemMove}
onItemsMove={this.props.onItemsMove}
onGridItemMouseDown={this.onGridItemMouseDown}
onGridItemClick={this.onGridItemClick}
activeDirent={this.state.activeDirent}
selectedDirentList={selectedDirentList}
/>
);
})