mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-14 14:21:23 +00:00
12.0 grid view support multiple selection (#6403)
* Feature - multiple selection with ctrl/shift * update grid view context menu list in multiple selection mode * fix code format * optimize codes
This commit is contained in:
@@ -56,7 +56,7 @@ class OpMenu extends React.Component {
|
||||
aria-expanded={this.state.isItemMenuShow}
|
||||
/>
|
||||
<DropdownMenu className="my-1 mr-2">
|
||||
{operations.map((item, index ) => {
|
||||
{operations.map((item, index) => {
|
||||
return (<DropdownItem key={index} data-op={item} onClick={this.onMenuItemClick}>{translateOperations(item)}</DropdownItem>);
|
||||
})}
|
||||
</DropdownMenu>
|
||||
|
Reference in New Issue
Block a user