mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 09:35:38 -05:00
Fix backup (#4274)
* check to see whether options is available * removing options state and using _modelOptions * removed additional space * making options getter private as not intended to expose
This commit is contained in:
@@ -87,7 +87,7 @@ export class OptionsDialog extends Modal {
|
||||
constructor(
|
||||
title: string,
|
||||
name: string,
|
||||
private options: IOptionsDialogOptions,
|
||||
options: IOptionsDialogOptions,
|
||||
@IPartService partService: IPartService,
|
||||
@IWorkbenchThemeService private _workbenchThemeService: IWorkbenchThemeService,
|
||||
@IContextViewService private _contextViewService: IContextViewService,
|
||||
@@ -178,6 +178,10 @@ export class OptionsDialog extends Modal {
|
||||
}
|
||||
}
|
||||
|
||||
private get options(): IOptionsDialogOptions {
|
||||
return this._modalOptions as IOptionsDialogOptions;
|
||||
}
|
||||
|
||||
public get optionValues(): { [name: string]: any } {
|
||||
return this._optionValues;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user