mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
fix the missing icon issue of expand/collapse btn (#8132)
This commit is contained in:
@@ -197,7 +197,7 @@ export class ProfilerCollapsablePanelAction extends Action {
|
|||||||
private _collapsed: boolean;
|
private _collapsed: boolean;
|
||||||
|
|
||||||
constructor(id: string, label: string) {
|
constructor(id: string, label: string) {
|
||||||
super(id, label, 'minimize-panel-action');
|
super(id, label, 'codicon-chevron-down');
|
||||||
}
|
}
|
||||||
|
|
||||||
public run(input: ProfilerInput): Promise<boolean> {
|
public run(input: ProfilerInput): Promise<boolean> {
|
||||||
@@ -212,7 +212,7 @@ export class ProfilerCollapsablePanelAction extends Action {
|
|||||||
|
|
||||||
set collapsed(val: boolean) {
|
set collapsed(val: boolean) {
|
||||||
this._collapsed = val === false ? false : true;
|
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');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user