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
1441cdf2
Commit
1441cdf2
authored
May 05, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '31810-commit-link' into 'master'
Remove # char for commit Closes #31810 See merge request !11093
parents
64014b15
f7a5ce92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
app/assets/javascripts/merge_request_widget.js
app/assets/javascripts/merge_request_widget.js
+1
-1
changelogs/unreleased/31810-commit-link.yml
changelogs/unreleased/31810-commit-link.yml
+4
-0
No files found.
app/assets/javascripts/merge_request_widget.js
View file @
1441cdf2
...
...
@@ -291,7 +291,7 @@ import MiniPipelineGraph from './mini_pipeline_graph_dropdown';
MergeRequestWidget
.
prototype
.
updateCommitUrls
=
function
(
id
)
{
const
commitsUrl
=
this
.
opts
.
commits_path
;
$
(
'
.js-commit-link
'
).
text
(
`#
${
id
}
`
).
attr
(
'
href
'
,
[
commitsUrl
,
id
].
join
(
'
/
'
));
$
(
'
.js-commit-link
'
).
text
(
id
).
attr
(
'
href
'
,
[
commitsUrl
,
id
].
join
(
'
/
'
));
};
MergeRequestWidget
.
prototype
.
initMiniPipelineGraph
=
function
()
{
...
...
changelogs/unreleased/31810-commit-link.yml
0 → 100644
View file @
1441cdf2
---
title
:
Remove `#` being added on commit sha in MR widget
merge_request
:
author
:
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