mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Adding lists support in text component (#17065)
* Adding lists support in text component * Fixing get textType * Code cleanup * Combining values into value
This commit is contained in:
@@ -1350,10 +1350,10 @@ class TextComponentWrapper extends ComponentWrapper implements azdata.TextCompon
|
||||
this.properties = {};
|
||||
}
|
||||
|
||||
public get value(): string {
|
||||
public get value(): string | string[] {
|
||||
return this.properties['value'];
|
||||
}
|
||||
public set value(v: string) {
|
||||
public set value(v: string | string[]) {
|
||||
this.setProperty('value', v);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user