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
af9cfc3f
Commit
af9cfc3f
authored
Jun 23, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve JS conflicts
parent
30672c53
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
19 deletions
+2
-19
app/assets/javascripts/boards/components/board_new_issue.js
app/assets/javascripts/boards/components/board_new_issue.js
+0
-4
app/assets/javascripts/boards/models/list.js
app/assets/javascripts/boards/models/list.js
+0
-5
app/assets/javascripts/locale/es/app.js
app/assets/javascripts/locale/es/app.js
+1
-5
app/assets/javascripts/locale/zh_CN/app.js
app/assets/javascripts/locale/zh_CN/app.js
+1
-5
No files found.
app/assets/javascripts/boards/components/board_new_issue.js
View file @
af9cfc3f
...
...
@@ -29,18 +29,14 @@ export default {
assignees
:
[],
});
<<<<<<<
HEAD
if
(
Store
.
state
.
currentBoard
)
{
issue
.
milestone_id
=
Store
.
state
.
currentBoard
.
milestone_id
;
}
this
.
list
.
newIssue
(
issue
)
=======
eventHub
.
$emit
(
`scroll-board-list-
${
this
.
list
.
id
}
`
);
this
.
cancel
();
return
this
.
list
.
newIssue
(
issue
)
>>>>>>>
ce
/
master
.
then
(()
=>
{
// Need this because our jQuery very kindly disables buttons on ALL form submissions
$
(
this
.
$refs
.
submitButton
).
enable
();
...
...
app/assets/javascripts/boards/models/list.js
View file @
af9cfc3f
...
...
@@ -112,13 +112,8 @@ class List {
.
then
((
resp
)
=>
{
const
data
=
resp
.
json
();
issue
.
id
=
data
.
iid
;
<<<<<<<
HEAD
issue
.
milestone
=
data
.
milestone
;
})
.
then
(()
=>
{
=======
>>>>>>>
ce
/
master
if
(
this
.
issuesSize
>
1
)
{
const
moveBeforeIid
=
this
.
issues
[
1
].
id
;
gl
.
boardService
.
moveIssue
(
issue
.
id
,
null
,
null
,
null
,
moveBeforeIid
);
...
...
app/assets/javascripts/locale/es/app.js
View file @
af9cfc3f
This diff is collapsed.
Click to expand it.
app/assets/javascripts/locale/zh_CN/app.js
View file @
af9cfc3f
This diff is collapsed.
Click to expand it.
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