From 21ca37f41c82bdbc9fbea0f9b9257a6e5cd4f8b1 Mon Sep 17 00:00:00 2001 From: Yurii Date: Mon, 2 Feb 2026 18:28:27 +0200 Subject: [PATCH] list with category use icon in header --- client/src/views/list-with-categories.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/src/views/list-with-categories.js b/client/src/views/list-with-categories.js index 111059de74..ad7819041f 100644 --- a/client/src/views/list-with-categories.js +++ b/client/src/views/list-with-categories.js @@ -784,6 +784,12 @@ class ListWithCategories extends ListView { root.classList.add('action'); root.style.userSelect = 'none'; + const iconHtml = this.getHeaderIconHtml(); + + if (iconHtml) { + root.insertAdjacentHTML('afterbegin', iconHtml); + } + /** @type {*[]} */ const list = [root];