mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Convert values to string when selecting in selectbox (#24079)
This commit is contained in:
@@ -878,8 +878,8 @@ export class ConnectionWidget extends lifecycle.Disposable {
|
|||||||
this._connectionStringInputBox?.hideMessage();
|
this._connectionStringInputBox?.hideMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
private getModelValue(value: string): string {
|
private getModelValue(value: any): string {
|
||||||
return value !== undefined ? value : '';
|
return value !== undefined ? value.toString() : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {
|
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {
|
||||||
|
|||||||
Reference in New Issue
Block a user