BigW Consortium Gitlab

Commit 125e1151 by Sean McGivern Committed by Clement Ho

Merge branch 'dm-copy-mr-source-branch-as-gfm' into 'master'

Paste a copied MR source branch name as code when pasted into a GFM form See merge request !11315
parent b9934e70
......@@ -12,6 +12,15 @@ export default {
commitsText() {
return gl.text.pluralize('commit', this.mr.divergedCommitsCount);
},
branchNameClipboardData() {
// This supports code in app/assets/javascripts/copy_to_clipboard.js that
// works around ClipboardJS limitations to allow the context-specific
// copy/pasting of plain text or GFM.
return JSON.stringify({
text: this.mr.sourceBranch,
gfm: `\`${this.mr.sourceBranch}\``,
});
},
},
methods: {
isBranchTitleLong(branchTitle) {
......
---
title: Paste a copied MR source branch name as code when pasted into a GFM form
merge_request:
author:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment