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
17c4cfb3
Commit
17c4cfb3
authored
Jun 26, 2018
by
Lukas Eipert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve conflict in app/assets/javascripts/boards/components/sidebar/remove_issue.vue
parent
5d774c8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
app/assets/javascripts/boards/components/sidebar/remove_issue.vue
...ts/javascripts/boards/components/sidebar/remove_issue.vue
+0
-16
No files found.
app/assets/javascripts/boards/components/sidebar/remove_issue.vue
View file @
17c4cfb3
...
...
@@ -23,7 +23,6 @@
},
methods
:
{
removeIssue
()
{
<<<<<<<
HEAD
const
board
=
Store
.
state
.
currentBoard
;
const
issue
=
this
.
issue
;
const
lists
=
issue
.
getLists
();
...
...
@@ -34,18 +33,11 @@
.
map
(
label
=>
label
.
id
)
.
filter
(
id
=>
!
listLabelIds
.
includes
(
id
))
.
filter
(
id
=>
!
boardLabelIds
.
includes
(
id
));
=======
const
issue
=
this
.
issue
;
const
lists
=
issue
.
getLists
();
const
listLabelIds
=
lists
.
map
(
list
=>
list
.
label
.
id
);
let
labelIds
=
issue
.
labels
.
map
(
label
=>
label
.
id
).
filter
(
id
=>
!
listLabelIds
.
includes
(
id
));
>>>>>>>
upstream
/
master
if
(
labelIds
.
length
===
0
)
{
labelIds
=
[
''
];
}
<<<<<<<
HEAD
let
assigneeIds
=
issue
.
assignees
.
map
(
assignee
=>
assignee
.
id
)
.
filter
(
id
=>
id
!==
board
.
assignee
.
id
);
...
...
@@ -69,14 +61,6 @@
data
.
issue
.
weight
=
null
;
}
=======
const
data
=
{
issue
:
{
label_ids
:
labelIds
,
},
};
>>>>>>>
upstream
/
master
// Post the remove data
Vue
.
http
.
patch
(
this
.
updateUrl
,
data
).
catch
(()
=>
{
Flash
(
__
(
'
Failed to remove issue from board, please try again.
'
));
...
...
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