Переглянути джерело

Fixes badge on views

main
Eric Amodio 1 рік тому
джерело
коміт
c2777b8a3a
2 змінених файлів з 13 додано та 2 видалено
  1. +12
    -1
      src/views/viewBase.ts
  2. +1
    -1
      src/views/workspacesView.ts

+ 12
- 1
src/views/viewBase.ts Переглянути файл

@ -316,7 +316,18 @@ export abstract class ViewBase<
this.tree.onDidCollapseElement(this.onElementCollapsed, this),
this.tree.onDidExpandElement(this.onElementExpanded, this),
);
this._title = this.tree.title;
if (this._title != null) {
this.tree.title = this._title;
} else {
this._title = this.tree.title;
}
if (this._description != null) {
this.tree.description = this._description;
}
if (this._message != null) {
this.tree.message = this._message;
}
}
protected ensureRoot(force: boolean = false) {

+ 1
- 1
src/views/workspacesView.ts Переглянути файл

@ -27,7 +27,7 @@ export class WorkspacesView extends ViewBase<'workspaces', WorkspacesViewNode, W
this._disposable = this.container.workspaces.onDidChangeWorkspaces(
() => void this.ensureRoot().triggerChange(true),
);
this.description = `PREVIEW ☁️`;
this.description = `PREVIEW class="err">\u00a0\u00a0☁️`;
}
override dispose() {

Завантаження…
Відмінити
Зберегти