Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e67d9717
Commit
e67d9717
authored
Feb 17, 2020
by
Gwen_
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow the selection of several cards when the cmd or ctrl key is pressed.
parent
0ba8d090
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
app/assets/javascripts/boards/components/board_card.vue
app/assets/javascripts/boards/components/board_card.vue
+5
-4
changelogs/unreleased/195969-multi-select-on-issue-boards-inconsistent-erratic.yml
...969-multi-select-on-issue-boards-inconsistent-erratic.yml
+5
-0
No files found.
app/assets/javascripts/boards/components/board_card.vue
View file @
e67d9717
...
...
@@ -65,11 +65,12 @@ export default {
},
showIssue
(
e
)
{
if
(
e
.
target
.
classList
.
contains
(
'
js-no-trigger
'
))
return
;
if
(
this
.
showDetail
)
{
this
.
showDetail
=
false
;
// If CMD or CTRL is clicked
const
isMultiSelect
=
this
.
canMultiSelect
&&
(
e
.
ctrlKey
||
e
.
metaKey
);
// If CMD or CTRL is clicked
const
isMultiSelect
=
this
.
canMultiSelect
&&
(
e
.
ctrlKey
||
e
.
metaKey
);
if
(
this
.
showDetail
||
isMultiSelect
)
{
this
.
showDetail
=
false
;
if
(
boardsStore
.
detail
.
issue
&&
boardsStore
.
detail
.
issue
.
id
===
this
.
issue
.
id
)
{
eventHub
.
$emit
(
'
clearDetailIssue
'
,
isMultiSelect
);
...
...
changelogs/unreleased/195969-multi-select-on-issue-boards-inconsistent-erratic.yml
0 → 100644
View file @
e67d9717
---
title
:
Improved selection of multiple cards
merge_request
:
author
:
Gwen_
type
:
fixed
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment