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
62263946
Commit
62263946
authored
Mar 16, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates `path` key to `head_path` in both sastContainer and dast
parent
40fd6577
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ee/app/assets/javascripts/vue_merge_request_widget/mr_widget_options.js
...javascripts/vue_merge_request_widget/mr_widget_options.js
+3
-3
No files found.
ee/app/assets/javascripts/vue_merge_request_widget/mr_widget_options.js
View file @
62263946
...
...
@@ -240,10 +240,10 @@ export default {
},
fetchDockerReport
()
{
const
{
path
}
=
this
.
mr
.
sastContainer
;
const
{
head_
path
}
=
this
.
mr
.
sastContainer
;
this
.
isLoadingDocker
=
true
;
this
.
service
.
fetchReport
(
path
)
this
.
service
.
fetchReport
(
head_
path
)
.
then
((
data
)
=>
{
this
.
mr
.
setDockerReport
(
data
);
this
.
isLoadingDocker
=
false
;
...
...
@@ -257,7 +257,7 @@ export default {
fetchDastReport
()
{
this
.
isLoadingDast
=
true
;
this
.
service
.
fetchReport
(
this
.
mr
.
dast
.
path
)
this
.
service
.
fetchReport
(
this
.
mr
.
dast
.
head_
path
)
.
then
((
data
)
=>
{
this
.
mr
.
setDastReport
(
data
);
this
.
isLoadingDast
=
false
;
...
...
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