fix(kanban): use localized column label in select-all aria label

This commit is contained in:
Evgenii 2026-05-11 08:08:12 +00:00 committed by kshitij
parent 379e7dd014
commit 27cfe72543

View file

@ -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 ${colLabel || 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();