File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -236,15 +236,8 @@ export class InterfaceManager extends DisposableObject {
236
236
// user's workflow by immediately revealing the panel.
237
237
const showButton = 'View Results' ;
238
238
const queryName = helpers . getQueryName ( info ) ;
239
- let queryNameForMessage : string ;
240
- if ( queryName . length > 0 ) {
241
- // lower case the first character
242
- queryNameForMessage = queryName . charAt ( 0 ) . toLowerCase ( ) + queryName . substring ( 1 ) ;
243
- } else {
244
- queryNameForMessage = 'query' ;
245
- }
246
239
const resultPromise = vscode . window . showInformationMessage (
247
- `Finished running ${ queryNameForMessage } .` ,
240
+ `Finished running query ${ ( queryName . length > 0 ) ? ` “ ${ queryName } ”` : '' } .` ,
248
241
showButton
249
242
) ;
250
243
// Address this click asynchronously so we still update the
You can’t perform that action at this time.
0 commit comments