From 8adc31a93238c8e23b828e6f97472978fa3d0831 Mon Sep 17 00:00:00 2001 From: herrschmidt Date: Mon, 11 May 2026 18:53:06 +0200 Subject: [PATCH] =?UTF-8?q?fix(kanban):=20COLUMN=5FLABEL=20=E2=86=92=20FAL?= =?UTF-8?q?LBACK=5FCOLUMN=5FLABEL=20typo=20in=20aria-label?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The i18n merge introduced FALLBACK_COLUMN_LABEL but one aria-label template literal still referenced the undefined COLUMN_LABEL, causing a rendering crash in the Kanban dashboard tab. --- plugins/kanban/dashboard/dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kanban/dashboard/dist/index.js b/plugins/kanban/dashboard/dist/index.js index 3861d2e691fa2..3718ceef9faea 100644 --- a/plugins/kanban/dashboard/dist/index.js +++ b/plugins/kanban/dashboard/dist/index.js @@ -1898,7 +1898,7 @@ type: "checkbox", className: "hermes-kanban-col-check", title: "Select all tasks in this column", - "aria-label": `Select all tasks in ${COLUMN_LABEL[props.column.name] || props.column.name}`, + "aria-label": `Select all tasks in ${FALLBACK_COLUMN_LABEL[props.column.name] || props.column.name}`, checked: props.column.tasks.length > 0 && props.column.tasks.every(function (t) { return props.selectedIds.has(t.id); }), onChange: function (e) { e.stopPropagation();