Change deafult schema feature flag (#1604)

This commit is contained in:
v-darkora 2023-09-12 16:17:10 +02:00 committed by GitHub
parent 12ed591634
commit 0408a53121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
enableCopilot: "true" === get("enablecopilot"),
copilotVersion: get("copilotversion") ?? "v1.0",
disableCopilotPhoenixGateaway: "true" === get("disablecopilotphoenixgateaway"),
enableCopilotFullSchema: "true" === get("enablecopilotfullschema"),
enableCopilotFullSchema: "false" === get("enablecopilotfullschema") ? false : true,
};
}