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
666e87d9
Commit
666e87d9
authored
Aug 14, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix dropdown paths
parent
8be02246
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
app/assets/javascripts/boards/components/board_sidebar.js
app/assets/javascripts/boards/components/board_sidebar.js
+1
-3
app/assets/javascripts/boards/models/issue.js
app/assets/javascripts/boards/models/issue.js
+1
-1
ee/app/helpers/ee/boards_helper.rb
ee/app/helpers/ee/boards_helper.rb
+1
-1
No files found.
app/assets/javascripts/boards/components/board_sidebar.js
View file @
666e87d9
...
...
@@ -58,9 +58,7 @@ gl.issueBoards.BoardSidebar = Vue.extend({
this
.
list
=
this
.
detail
.
list
;
this
.
$nextTick
(()
=>
{
let
issueUrl
=
this
.
$refs
.
assigneeDropdown
.
dataset
.
issueUpdate
;
issueUrl
=
issueUrl
.
replace
(
'
:project_path
'
,
this
.
issue
.
project
.
path
);
this
.
endpoint
=
issueUrl
;
this
.
endpoint
=
this
.
$refs
.
assigneeDropdown
.
dataset
.
issueUpdate
;
});
},
deep
:
true
...
...
app/assets/javascripts/boards/models/issue.js
View file @
666e87d9
...
...
@@ -95,7 +95,7 @@ class ListIssue {
data
.
issue
.
label_ids
=
[
''
];
}
return
Vue
.
http
.
patch
(
url
,
data
);
return
Vue
.
http
.
patch
(
url
.
replace
(
'
:project_path
'
,
this
.
project
.
path
)
,
data
);
}
}
...
...
ee/app/helpers/ee/boards_helper.rb
View file @
666e87d9
...
...
@@ -38,7 +38,7 @@ module EE
end
def
board_sidebar_user_data
super
.
merge
(
group_id:
@group
&
.
path
)
super
.
merge
(
group_id:
@group
&
.
id
)
end
end
end
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