mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
Adding properties view and action bar to graph and fixing styling. (#18185)
* Adding properties view and action bar to graph. * Open Graph File * replacing innerhtml with innertext * Fixing floating promises * Fixed typo * renaming * Fixing hardcoded colors and comments * Removing todo and hardcoded colors * renaming method * removed unused contract * Fixed path in comment * converting div to button * adding checks to table width and height setter * Make method name more meaningful * adding method return types * concising repeated logic * removing unused styling * better sorting logic * Fixing graph parsing Renaming some stuff Implementing IDisposable * Fixing bad props logic * Fixed image loading issue * Removing hardcoded colors * Adding comments to localize and handling undefined cases in sort * Changed ch to px * moving util function to strings
This commit is contained in:
@@ -16,7 +16,7 @@ import {
|
||||
EditRevertCellResult,
|
||||
ExecutionPlanOptions,
|
||||
queryeditor,
|
||||
QueryPlanGraph
|
||||
ExecutionPlanGraph
|
||||
} from 'azdata';
|
||||
import { QueryInfo } from 'sql/workbench/services/query/common/queryModelService';
|
||||
import { IRange } from 'vs/editor/common/core/range';
|
||||
@@ -34,7 +34,7 @@ export interface IQueryPlanInfo {
|
||||
export interface IQueryPlan2Info {
|
||||
providerId: string;
|
||||
fileUri: string;
|
||||
planGraphs: QueryPlanGraph[];
|
||||
planGraphs: ExecutionPlanGraph[];
|
||||
}
|
||||
|
||||
export interface IQueryInfo {
|
||||
|
||||
Reference in New Issue
Block a user