File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -680,7 +680,7 @@ export class QueryHistoryManager extends DisposableObject {
680680 return this . treeDataProvider . getCurrent ( ) ;
681681 }
682682
683- getQueryById ( queryId : string ) : RemoteQueryHistoryItem | undefined {
683+ getRemoteQueryById ( queryId : string ) : RemoteQueryHistoryItem | undefined {
684684 return this . treeDataProvider . allHistory . find ( i => i . t === 'remote' && i . queryId === queryId ) as RemoteQueryHistoryItem ;
685685 }
686686
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export async function exportRemoteQueryResults(
2929) : Promise < void > {
3030 let queryHistoryItem : RemoteQueryHistoryItem ;
3131 if ( queryId ) {
32- const query = queryHistoryManager . getQueryById ( queryId ) ;
32+ const query = queryHistoryManager . getRemoteQueryById ( queryId ) ;
3333 if ( ! query ) {
3434 void logger . log ( `Could not find query with id ${ queryId } ` ) ;
3535 throw new Error ( 'There was an error when trying to retrieve variant analysis information' ) ;
You can’t perform that action at this time.
0 commit comments