mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 01:25:38 -05:00
Tasks schema registration (#900)
* inital task update * fix schema update problems * remove dead code
This commit is contained in:
@@ -51,7 +51,7 @@ class DashboardContainerRegistry implements IDashboardContainerRegistry {
|
||||
}
|
||||
|
||||
public get containerTypeSchemaProperties(): IJSONSchemaMap {
|
||||
return deepClone(this._dashboardContainerTypeSchemaProperties);
|
||||
return this._dashboardContainerTypeSchemaProperties;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -64,7 +64,7 @@ class DashboardContainerRegistry implements IDashboardContainerRegistry {
|
||||
}
|
||||
|
||||
public get navSectionContainerTypeSchemaProperties(): IJSONSchemaMap {
|
||||
return deepClone(this._dashboardNavSectionContainerTypeSchemaProperties);
|
||||
return this._dashboardNavSectionContainerTypeSchemaProperties;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ class DashboardWidgetRegistry implements IDashboardWidgetRegistry {
|
||||
* @param val cal for default
|
||||
* @param context either 'database' or 'server' for what page to register for; if not specified, will register for both
|
||||
*/
|
||||
registerNonCustomDashboardWidget(id: string, description: string, val: IInsightsConfig, context?: 'database' | 'server'): WidgetIdentifier {
|
||||
public registerNonCustomDashboardWidget(id: string, description: string, val: IInsightsConfig, context?: 'database' | 'server'): WidgetIdentifier {
|
||||
if (context === undefined || context === 'database') {
|
||||
this._dashboardWidgetSchema.properties[id] = { type: 'null', default: null };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user