Skip to content

Commit 7947afb

Browse files
committed
Remove unnecessary commas from alert shortDescription
1 parent c058e7a commit 7947afb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/remote-queries/sarif-processing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function getShortDescription(
8686
return rule.shortDescription.text;
8787
}
8888

89-
return message.tokens.map(token => token.text).join();
89+
return message.tokens.map(token => token.text).join('');
9090
}
9191

9292
export function tryGetSeverity(

0 commit comments

Comments
 (0)