Fix get Modal value validation (#20976)

This commit is contained in:
Cheena Malhotra
2022-10-26 08:10:53 -07:00
committed by GitHub
parent d5cf088ba7
commit b13e0cf615

View File

@@ -719,7 +719,7 @@ export class ConnectionWidget extends lifecycle.Disposable {
}
private getModelValue(value: string): string {
return value ? value : '';
return value !== undefined ? value : '';
}
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {