Skip to content

Commit

Permalink
Fix loc string to fix the build (#6529)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 authored Dec 11, 2024
1 parent 30dce34 commit b9b9a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/issues/issueFeatureRegistrar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ export class IssueFeatureRegistrar extends Disposable {
const projectsLine = `${PROJECTS} `;
const cached = this._newIssueCache.get();
const text = (cached && cached !== '') ? cached : `${options?.title ?? vscode.l10n.t('Issue Title')}\n
${repoRef ? `<!-- ${vscode.l10n.t(`This issue will be created in repo ${repoRef.nameWithOwner} (${repoUrl}). Changing this line has no effect.`)} -->\n` : ''}
${repoRef ? `<!-- ${vscode.l10n.t('This issue will be created in repo {0} ({1}). Changing this line has no effect.', repoRef.nameWithOwner, repoUrl!)} -->\n` : ''}
${assigneeLine}
${labelLine}
${milestoneLine}
Expand Down

0 comments on commit b9b9a25

Please sign in to comment.