[PR #1393] [MERGED] feat: allow folding done column by clicking green checkmarks in Kanban view #9231

Closed
opened 2026-04-23 08:49:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/1393
Author: @Copilot
Created: 9/2/2025
Status: Merged
Merged: 9/2/2025
Merged by: @kolaente

Base: mainHead: copilot/fix-1387


📝 Commits (2)

  • 98d8bdc Initial plan
  • 90d4754 feat: add click handler to fold done column via green checkmark

📊 Changes

1 file changed (+5 additions, -0 deletions)

View changed files

📝 frontend/src/components/project/views/ProjectKanban.vue (+5 -0)

📄 Description

This PR adds the ability to fold/collapse the "Done" column in Kanban view by clicking directly on the green checkmarks (✓✓), making the interaction more intuitive for users.

Changes

  • Click handler: Added @click.stop event handler to the green checkmark icon that calls the existing collapseBucket() function
  • Visual feedback: Added cursor: pointer CSS styling to indicate the checkmark is clickable
  • Event isolation: Used @click.stop to prevent event propagation to the bucket header's unfold handler

Behavior

When users click on the green double-check icon of a done column:

  • The column immediately folds/collapses (rotates 90 degrees)
  • Tasks and footer are hidden to save space
  • Clicking elsewhere on the collapsed header unfolds it (existing behavior unchanged)

The implementation leverages existing, well-tested collapse functionality and only adds 5 lines of code. The change is scoped specifically to done buckets (when the green checkmark is visible) and doesn't affect any other functionality.

This addresses user feedback that clicking on the green checkmarks feels like a natural way to fold completed task columns, improving the overall user experience.

Fixes #1387.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • download.cypress.io
    • Triggering command: node index.js --exec install (dns block)
  • googlechromelabs.github.io
    • Triggering command: node install.mjs (dns block)
  • https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.204/linux64/chrome-headless-shell-linux64.zip
    • Triggering command: node install.mjs (http block)
  • https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.204/linux64/chrome-linux64.zip
    • Triggering command: node install.mjs (http block)

If you need me to access, download, or install something from one of these locations, you can either:


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/1393 **Author:** [@Copilot](https://github.com/apps/copilot-swe-agent) **Created:** 9/2/2025 **Status:** ✅ Merged **Merged:** 9/2/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `copilot/fix-1387` --- ### 📝 Commits (2) - [`98d8bdc`](https://github.com/go-vikunja/vikunja/commit/98d8bdcbea9666e2d8fb00479e5ae7c0c4dbdd1d) Initial plan - [`90d4754`](https://github.com/go-vikunja/vikunja/commit/90d47546ffd3bc31c9eaf4227ed40956fed35dab) feat: add click handler to fold done column via green checkmark ### 📊 Changes **1 file changed** (+5 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/project/views/ProjectKanban.vue` (+5 -0) </details> ### 📄 Description This PR adds the ability to fold/collapse the "Done" column in Kanban view by clicking directly on the green checkmarks (✓✓), making the interaction more intuitive for users. ## Changes - **Click handler**: Added `@click.stop` event handler to the green checkmark icon that calls the existing `collapseBucket()` function - **Visual feedback**: Added `cursor: pointer` CSS styling to indicate the checkmark is clickable - **Event isolation**: Used `@click.stop` to prevent event propagation to the bucket header's unfold handler ## Behavior When users click on the green double-check icon of a done column: - The column immediately folds/collapses (rotates 90 degrees) - Tasks and footer are hidden to save space - Clicking elsewhere on the collapsed header unfolds it (existing behavior unchanged) The implementation leverages existing, well-tested collapse functionality and only adds 5 lines of code. The change is scoped specifically to done buckets (when the green checkmark is visible) and doesn't affect any other functionality. This addresses user feedback that clicking on the green checkmarks feels like a natural way to fold completed task columns, improving the overall user experience. Fixes #1387. > [!WARNING] > > <details> > <summary>Firewall rules blocked me from connecting to one or more addresses (expand for details)</summary> > > #### I tried to connect to the following addresses, but was blocked by firewall rules: > > - `download.cypress.io` > - Triggering command: `node index.js --exec install` (dns block) > - `googlechromelabs.github.io` > - Triggering command: `node install.mjs` (dns block) > - `https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.204/linux64/chrome-headless-shell-linux64.zip` > - Triggering command: `node install.mjs` (http block) > - `https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.204/linux64/chrome-linux64.zip` > - Triggering command: `node install.mjs` (http block) > > If you need me to access, download, or install something from one of these locations, you can either: > > - Configure [Actions setup steps](https://gh.io/copilot/actions-setup-steps) to set up my environment, which run before the firewall is enabled > - Add the appropriate URLs or hosts to the custom allowlist in this repository's [Copilot coding agent settings](https://github.com/go-vikunja/vikunja/settings/copilot/coding_agent) (admins only) > > </details> <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-23 08:49:37 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#9231