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();
|
||||
}
|
||||
|
||||
private getModelValue(value: string): string {
|
||||
return value !== undefined ? value : '';
|
||||
private getModelValue(value: any): string {
|
||||
return value !== undefined ? value.toString() : '';
|
||||
}
|
||||
|
||||
public fillInConnectionInputs(connectionInfo: IConnectionProfile) {
|
||||
|
||||
Reference in New Issue
Block a user