You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dialog.showSelect('Select which issue you want to view for this branch:','0',issueLinks.map((issueLink,i)=>({name: issueLink.displayText,value: i.toString()})),'View Issue',(value)=>{
html+='<span>Issue Linking converts issue numbers in commit & tag messages into hyperlinks, that open the issue in your issue tracking system. If a branch\'s name contains an issue number, the issue can be viewed via the branch\'s context menu.</span>'+
{type: DialogInputType.Text,name: 'Issue Regex',default: defaultIssueRegex!==null ? defaultIssueRegex : '',placeholder: null,info: 'A regular expression that matches your issue numbers, with one or more capturing groups ( ) that will be substituted into the "Issue URL".'},
594
-
{type: DialogInputType.Text,name: 'Issue URL',default: defaultIssueUrl!==null ? defaultIssueUrl : '',placeholder: null,info: 'The issue\'s URL in your project’s issue tracking system, with placeholders ($1, $2, etc.) for the groups captured ( ) in the "Issue Regex".'},
594
+
{type: DialogInputType.Text,name: 'Issue URL',default: defaultIssueUrl!==null ? defaultIssueUrl : '',placeholder: null,info: 'The issue\'s URL in your issue tracking system, with placeholders ($1, $2, etc.) for the groups captured ( ) in the "Issue Regex".'},
595
595
{type: DialogInputType.Checkbox,name: 'Use Globally',value: defaultUseGlobally,info: 'Use the "Issue Regex" and "Issue URL" for all repositories by default (it can be overridden per repository). Note: "Use Globally" is only suitable if identical Issue Linking applies to the majority of your repositories (e.g. when using JIRA or Pivotal Tracker).'}
0 commit comments