mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
Add "No labels" (Empty) option to label filters #906
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @timkam13 on GitHub (Jan 27, 2026).
Which part of the project does this feature apply to?
Frontend
What would you like?
Currently, Planka's filtering system only allows selecting existing labels. There is no way to filter for cards that have no labels assigned or to effectively exclude cards with specific labels from the view.
I suggest adding a special "No labels" (or "Empty") option at the top of the label filter dropdown.
When selected, the board should display cards that have no labels assigned.
This would allow users to isolate "unorganized" tasks or (in combination with other filters) exclude specific categories.
This feature is standard in other kanban tools (like Trello or Jira) and significantly improves board management for high-volume projects.
Why is this needed?
For example, if I mark completed cards with a "Done" label, I cannot configure the filter to show everything except those cards, because I cannot select "empty" cards to keep them in view.
Currently, the only workaround is to manually tag every single card with a placeholder label, which is inefficient and clutters the workflow.
Other information
Alternative: add filter "do NOT show labels"
@timkam13 commented on GitHub (Jan 27, 2026):
Additionally, I would like to request label activity tracking.
It would be extremely helpful for reporting and analytics if the system saved and displayed:
Timestamp: Exactly when a label was added to or removed from a card (as MVP only added is enought).
Author: Which user performed the action.
Why this is important:
This data is essential for calculating lead times and generating reports.
For example, if I use a "Ready for Review" or "Done" label, I need to know exactly when those labels were applied to measure how long a task stayed in a particular state.
Currently, it's difficult to track the lifecycle of a task based solely on labels without this history.
@hwelch-fle commented on GitHub (Jan 27, 2026):
This is somewhat possible using the API. Here's some plankapy code that shows some of what you want:
Since removing a label from a card just deletes the associated
CardLabelrecord from the database, tracing label deletions is a bit trickier. There is a webhook event that will send a POST request when a label is deleted from a cardcardLabelCreateandcardLabelDelete. So if you wanted to monitor events as they happen, you could subscribe to that webhook and log the events as they happen.