Skip to content

fix(kanban): use colLabel instead of undefined COLUMN_LABEL#23701

Closed
HanVertegaal wants to merge 1 commit into
NousResearch:mainfrom
HanVertegaal:fix/kanban-col-label-crash
Closed

fix(kanban): use colLabel instead of undefined COLUMN_LABEL#23701
HanVertegaal wants to merge 1 commit into
NousResearch:mainfrom
HanVertegaal:fix/kanban-col-label-crash

Conversation

@HanVertegaal

Copy link
Copy Markdown

Summary

The column select-all checkbox in the kanban dashboard crashes with:

ReferenceError: COLUMN_LABEL is not defined

This is because the aria-label references the undefined COLUMN_LABEL map instead of the already-computed colLabel local variable.

Fix

Replace:

`Select all tasks in ${COLUMN_LABEL[props.column.name] || props.column.name}`

With:

`Select all tasks in ${colLabel || props.column.name}`

Root cause

Commit 3df7e30 introduced the column select-all checkbox but used the wrong variable name. The colLabel local (computed via getColumnLabel(t, props.column.name)) was already available and correct — it just wasn't used.

…abel

The column select-all checkbox aria-label referenced the undefined
COLUMN_LABEL map instead of the already-computed colLabel local.
Introduced in 3df7e30 (shift-click / select-all toggle).
Copilot AI review requested due to automatic review settings May 11, 2026 09:38

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review any files in this pull request.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@alt-glitch alt-glitch added type/bug Something isn't working P3 Low — cosmetic, nice to have comp/plugins Plugin system and bundled plugins duplicate This issue or pull request already exists labels May 11, 2026
@alt-glitch

Copy link
Copy Markdown
Collaborator

Duplicate of #23637 (and #23659). Same fix for COLUMN_LABEL undefined ReferenceError in kanban dashboard column select-all aria-label. See #23620 for the tracking issue.

@mis198314

Copy link
Copy Markdown

So, when will this be merged. I have same issue.

@kshitijk4poor

Copy link
Copy Markdown
Collaborator

Duplicate of #23659 — merged via salvage PR #23791. Thanks for the contribution!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

comp/plugins Plugin system and bundled plugins duplicate This issue or pull request already exists P3 Low — cosmetic, nice to have type/bug Something isn't working

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants