mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-11 03:51:37 -04:00
Fix get Modal value validation (#20976)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user