File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
extensions/ql-vscode/src/model-editor Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,9 @@ export class ModelEditorView extends AbstractWebview<
230230 this . setViewState ( ) ,
231231 this . loadExternalApiUsages ( ( update ) =>
232232 progress ( {
233+ ...update ,
233234 step : update . step + 500 ,
234235 maxStep : 500 + externalApiQueriesProgressMaxStep ,
235- message : `Reloading models: ${ update . message } ` ,
236236 } ) ,
237237 ) ,
238238 ] ) ;
@@ -363,7 +363,11 @@ export class ModelEditorView extends AbstractWebview<
363363 databaseItem : this . databaseItem ,
364364 queryStorageDir : this . queryStorageDir ,
365365 queryDir : this . queryDir ,
366- progress,
366+ progress : ( update ) =>
367+ progress ( {
368+ ...update ,
369+ message : `Loading models: ${ update . message } ` ,
370+ } ) ,
367371 token : cancellationTokenSource . token ,
368372 } ) ;
369373 if ( ! queryResult ) {
You can’t perform that action at this time.
0 commit comments