Skip to content

Commit

Permalink
Adding missing $ to template string
Browse files Browse the repository at this point in the history
  • Loading branch information
alanraison committed Sep 22, 2020
1 parent 8af58ab commit 83b256d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class CodeCommitSourceAction extends Action {
let candidate = '';
let counter = 0;
do {
candidate = this.eventIdFromPrefix(`${baseId}{counter}`);
candidate = this.eventIdFromPrefix(`${baseId}${counter}`);
counter += 1;
} while (this.props.repository.node.tryFindChild(candidate) !== undefined);
return candidate;
Expand Down

0 comments on commit 83b256d

Please sign in to comment.