1
0
Fork 0
mirror of synced 2024-09-18 02:08:34 +12:00

Merge branch 'budi-8608-ai-platform-level-config' of github.com:Budibase/budibase into budi-8608-ai-platform-level-config

This commit is contained in:
Martin McKeaveney 2024-09-10 16:52:07 +01:00
commit 2990291657

View file

@ -215,7 +215,7 @@ export async function verifyAIConfig(
existingConfig: AIConfig
) {
// ensure that the redacted API keys are not overwritten in the DB
for (let uuid in existingConfig.config) {
for (const uuid in existingConfig.config) {
if (configToSave[uuid]?.apiKey === PASSWORD_REPLACEMENT) {
configToSave[uuid].apiKey = existingConfig.config[uuid].apiKey
}