mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 11:01:37 -05: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 {
|
private getModelValue(value: string): string {
|
||||||
return value ? value : '';
|
return value !== undefined ? value : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {
|
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {
|
||||||
|
|||||||
Reference in New Issue
Block a user