Allow queries panel to be visible in non-dev mode too (#2528)

This commit is contained in:
Shati Patel
2023-06-20 16:46:31 +01:00
committed by GitHub
parent 2c97ca95aa
commit c628454e25

View File

@@ -1,6 +1,6 @@
import { CodeQLCliServer } from "../codeql-cli/cli";
import { extLogger } from "../common";
import { App, AppMode } from "../common/app";
import { App } from "../common/app";
import { isCanary, showQueriesPanel } from "../config";
import { DisposableObject } from "../pure/disposable-object";
import { QueriesPanel } from "./queries-panel";
@@ -13,9 +13,9 @@ export class QueriesModule extends DisposableObject {
}
private initialize(app: App, cliServer: CodeQLCliServer): void {
if (app.mode === AppMode.Production || !isCanary() || !showQueriesPanel()) {
// Currently, we only want to expose the new panel when we are in development and canary mode
// and the developer has enabled the "Show queries panel" flag.
if (!isCanary() || !showQueriesPanel()) {
// Currently, we only want to expose the new panel when we are in canary mode
// and the user has enabled the "Show queries panel" flag.
return;
}
void extLogger.log("Initializing queries panel.");