mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -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:
@@ -146,10 +146,10 @@ export class LanguageContentView extends LanguageViewBase {
|
||||
|
||||
public get updatedContent(): mssql.ExternalLanguageContent {
|
||||
return {
|
||||
pathToExtension: this.extensionFile.value || '',
|
||||
extensionFileName: this.extensionFileName.value || '',
|
||||
parameters: this.parameters.value || '',
|
||||
environmentVariables: this.envVariables.value || '',
|
||||
pathToExtension: this.extensionFile.value as string || '',
|
||||
extensionFileName: this.extensionFileName.value as string || '',
|
||||
parameters: this.parameters.value as string || '',
|
||||
environmentVariables: this.envVariables.value as string || '',
|
||||
isLocalFile: this._isLocalPath || false,
|
||||
platform: this._languageContent?.platform
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user