mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-25 05:52:34 +00:00
fix(kanban): use localized column label in select-all aria label
This commit is contained in:
parent
379e7dd014
commit
27cfe72543
1 changed files with 1 additions and 1 deletions
2
plugins/kanban/dashboard/dist/index.js
vendored
2
plugins/kanban/dashboard/dist/index.js
vendored
|
|
@ -1898,7 +1898,7 @@
|
||||||
type: "checkbox",
|
type: "checkbox",
|
||||||
className: "hermes-kanban-col-check",
|
className: "hermes-kanban-col-check",
|
||||||
title: "Select all tasks in this column",
|
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); }),
|
checked: props.column.tasks.length > 0 && props.column.tasks.every(function (t) { return props.selectedIds.has(t.id); }),
|
||||||
onChange: function (e) {
|
onChange: function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue