mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
Add functionality to expand and collapse all property rows. (#20746)
* Adds ability to expand and collapse all property rows * Removes duplicate collapse/expand all logic * Code review changes * Removes unnecessary enum * Updates comment * Code review changes * Code review changes * Minor clean up * Renames expand/collapse method * Corrects collapse all action IDs and labels
This commit is contained in:
@@ -112,7 +112,7 @@ export class ExecutionPlanPropertiesView extends ExecutionPlanPropertiesViewBase
|
||||
this.populateTable(columns, this.convertPropertiesToTableRows(this._model.graphElement?.properties));
|
||||
}
|
||||
|
||||
private convertPropertiesToTableRows(properties: azdata.executionPlan.ExecutionPlanGraphElementProperty[]): Slick.SlickData[] {
|
||||
private convertPropertiesToTableRows(properties: azdata.executionPlan.ExecutionPlanGraphElementProperty[] | undefined): Slick.SlickData[] {
|
||||
if (!properties) {
|
||||
return [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user