From e37f73bce0b7d76ea1fc6c3512c5f340884e2e3e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 7 Apr 2026 19:11:26 +0300 Subject: [PATCH] fix(tab_bar): changing note icon reflect in the tab icon (closes #8994) --- apps/client/src/widgets/tab_row.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/tab_row.ts b/apps/client/src/widgets/tab_row.ts index 1089f49c9b..21701de346 100644 --- a/apps/client/src/widgets/tab_row.ts +++ b/apps/client/src/widgets/tab_row.ts @@ -903,7 +903,7 @@ export default class TabRowWidget extends BasicWidget { loadResults.isNoteReloaded(noteContext.noteId) || loadResults .getAttributeRows() - .find((attr) => ["workspace", "workspaceIconClass", "workspaceTabBackgroundColor"].includes(attr.name || "") && attributeService.isAffecting(attr, noteContext.note)) + .find((attr) => ["workspace", "iconClass", "workspaceIconClass", "workspaceTabBackgroundColor"].includes(attr.name || "") && attributeService.isAffecting(attr, noteContext.note)) ) { const $tab = this.getTabById(noteContext.ntxId);