File tree Expand file tree Collapse file tree
model-editor/model-alerts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -273,6 +273,9 @@ export type VariantAnalysisCommands = {
273273 "codeQL.openVariantAnalysisLogs" : (
274274 variantAnalysisId : number ,
275275 ) => Promise < void > ;
276+ "codeQLModelAlerts.openVariantAnalysisLogs" : (
277+ variantAnalysisId : number ,
278+ ) => Promise < void > ;
276279 "codeQL.openVariantAnalysisView" : (
277280 variantAnalysisId : number ,
278281 ) => Promise < void > ;
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ export class ModelAlertsView extends AbstractWebview<
9393 break ;
9494 case "openActionsLogs" :
9595 await this . app . commands . execute (
96- "codeQL .openVariantAnalysisLogs" ,
96+ "codeQLModelAlerts .openVariantAnalysisLogs" ,
9797 msg . variantAnalysisId ,
9898 ) ;
9999 break ;
Original file line number Diff line number Diff line change @@ -191,6 +191,8 @@ export class VariantAnalysisManager
191191 "codeQL.monitorReauthenticatedVariantAnalysis" :
192192 this . monitorVariantAnalysis . bind ( this ) ,
193193 "codeQL.openVariantAnalysisLogs" : this . openVariantAnalysisLogs . bind ( this ) ,
194+ "codeQLModelAlerts.openVariantAnalysisLogs" :
195+ this . openVariantAnalysisLogs . bind ( this ) ,
194196 "codeQL.openVariantAnalysisView" : this . showView . bind ( this ) ,
195197 "codeQL.runVariantAnalysis" :
196198 this . runVariantAnalysisFromCommandPalette . bind ( this ) ,
You can’t perform that action at this time.
0 commit comments