mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-10 03:11:07 +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:
@@ -57,7 +57,7 @@ class Libraries extends Component {
|
||||
let group = new Group(item);
|
||||
group.repos = item.repos.map(item => new Repo(item));
|
||||
return group;
|
||||
}).sort((a, b) => a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1 );
|
||||
}).sort((a, b) => a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1);
|
||||
const { allRepoList, myRepoList, sharedRepoList, publicRepoList, groupList } = this.sortRepos(repoList, groups);
|
||||
this.setState({
|
||||
isLoading: false,
|
||||
|
Reference in New Issue
Block a user