diff --git a/web/src/utils/configUtil.ts b/web/src/utils/configUtil.ts index cb7f6f52b6..3ebe96a63b 100644 --- a/web/src/utils/configUtil.ts +++ b/web/src/utils/configUtil.ts @@ -229,7 +229,12 @@ export function buildOverrides( const result: JsonObject = {}; for (const [key, value] of Object.entries(currentObj)) { - if (value === undefined && baseObj && baseObj[key] !== undefined) { + if ( + (value === undefined || value === null) && + baseObj && + baseObj[key] !== undefined && + baseObj[key] !== null + ) { result[key] = ""; continue; }