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 {
47
47
ruleId = ruleId . substr ( 2 ) ;
48
48
}
49
49
50
- await vscode . commands . executeCommand ( "vscode.open" , vscode . Uri . parse ( pssaDocBaseURL + ` ${ ruleId } ` ) ) ;
50
+ await vscode . commands . executeCommand ( "vscode.open" , vscode . Uri . parse ( pssaDocBaseURL + ruleId ) ) ;
51
51
}
52
52
}
Original file line number Diff line number Diff line change @@ -650,7 +650,7 @@ export class PickPSHostProcessFeature extends LanguageClientConsumer {
650
650
} ;
651
651
const item = await window . showQuickPick ( items , options ) ;
652
652
653
- return item ? ` ${ item . pid } ` : undefined ;
653
+ return item ? item . pid : undefined ;
654
654
}
655
655
656
656
private clearWaitingToken ( ) : void {
@@ -766,7 +766,7 @@ export class PickRunspaceFeature extends LanguageClientConsumer {
766
766
} ;
767
767
const item = await window . showQuickPick ( items , options ) ;
768
768
769
- return item ? ` ${ item . id } ` : undefined ;
769
+ return item ? item . id : undefined ;
770
770
}
771
771
772
772
private clearWaitingToken ( ) : void {
You can’t perform that action at this time.
0 commit comments