File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,6 @@ export class CodeActionsFeature implements vscode.Disposable {
4747 ruleId = ruleId . substr ( 2 ) ;
4848 }
4949
50- await vscode . commands . executeCommand ( "vscode.open" , vscode . Uri . parse ( pssaDocBaseURL + ` ${ ruleId } ` ) ) ;
50+ await vscode . commands . executeCommand ( "vscode.open" , vscode . Uri . parse ( pssaDocBaseURL + ruleId ) ) ;
5151 }
5252}
Original file line number Diff line number Diff line change @@ -650,7 +650,7 @@ export class PickPSHostProcessFeature extends LanguageClientConsumer {
650650 } ;
651651 const item = await window . showQuickPick ( items , options ) ;
652652
653- return item ? ` ${ item . pid } ` : undefined ;
653+ return item ? item . pid : undefined ;
654654 }
655655
656656 private clearWaitingToken ( ) : void {
@@ -766,7 +766,7 @@ export class PickRunspaceFeature extends LanguageClientConsumer {
766766 } ;
767767 const item = await window . showQuickPick ( items , options ) ;
768768
769- return item ? ` ${ item . id } ` : undefined ;
769+ return item ? item . id : undefined ;
770770 }
771771
772772 private clearWaitingToken ( ) : void {
You can’t perform that action at this time.
0 commit comments