From 23da6155dda257347d854c2360267f2241f80b77 Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Wed, 30 Oct 2019 20:10:34 -0700 Subject: [PATCH] fix the missing icon issue of expand/collapse btn (#8132) --- src/sql/workbench/parts/profiler/browser/profilerActions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/workbench/parts/profiler/browser/profilerActions.ts b/src/sql/workbench/parts/profiler/browser/profilerActions.ts index 965674ea3b..36a5613e56 100644 --- a/src/sql/workbench/parts/profiler/browser/profilerActions.ts +++ b/src/sql/workbench/parts/profiler/browser/profilerActions.ts @@ -197,7 +197,7 @@ export class ProfilerCollapsablePanelAction extends Action { private _collapsed: boolean; constructor(id: string, label: string) { - super(id, label, 'minimize-panel-action'); + super(id, label, 'codicon-chevron-down'); } public run(input: ProfilerInput): Promise { @@ -212,7 +212,7 @@ export class ProfilerCollapsablePanelAction extends Action { set collapsed(val: boolean) { this._collapsed = val === false ? false : true; - this._setClass(this._collapsed ? 'maximize-panel-action' : 'minimize-panel-action'); + this._setClass(this._collapsed ? 'codicon-chevron-up' : 'codicon-chevron-down'); } }