[PR #1447] feat: Add delete option to project card #1301

Open
opened 2026-02-04 22:02:19 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/plankanban/planka/pull/1447
Author: @SUMMERxKx
Created: 12/1/2025
Status: 🔄 Open

Base: masterHead: master


📝 Commits (1)

  • 7387887 feat: Add delete option to project card

📊 Changes

8 files changed (+230 additions, -1 deletions)

View changed files

📝 client/src/components/projects/ProjectCard/ProjectCard.jsx (+36 -1)
📝 client/src/components/projects/ProjectCard/ProjectCard.module.scss (+28 -0)
client/src/components/projects/ProjectCard/ProjectCardMenu.jsx (+92 -0)
client/src/components/projects/ProjectCard/ProjectCardMenu.module.scss (+36 -0)
📝 client/src/constants/EntryActionTypes.js (+1 -0)
📝 client/src/entry-actions/projects.js (+8 -0)
📝 client/src/sagas/core/watchers/projects.js (+1 -0)
📝 client/src/selectors/projects.js (+28 -0)

📄 Description

Provides a three-dot context menu on each home page project card that allows users to delete projects without opening them. Reuses the existing delete logic including project name confirmation to keep behavior consistent with the project settings page.


🔄 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/plankanban/planka/pull/1447 **Author:** [@SUMMERxKx](https://github.com/SUMMERxKx) **Created:** 12/1/2025 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`7387887`](https://github.com/plankanban/planka/commit/7387887aa556e85d43521860a2e8b8af745c9d67) feat: Add delete option to project card ### 📊 Changes **8 files changed** (+230 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `client/src/components/projects/ProjectCard/ProjectCard.jsx` (+36 -1) 📝 `client/src/components/projects/ProjectCard/ProjectCard.module.scss` (+28 -0) ➕ `client/src/components/projects/ProjectCard/ProjectCardMenu.jsx` (+92 -0) ➕ `client/src/components/projects/ProjectCard/ProjectCardMenu.module.scss` (+36 -0) 📝 `client/src/constants/EntryActionTypes.js` (+1 -0) 📝 `client/src/entry-actions/projects.js` (+8 -0) 📝 `client/src/sagas/core/watchers/projects.js` (+1 -0) 📝 `client/src/selectors/projects.js` (+28 -0) </details> ### 📄 Description Provides a three-dot context menu on each home page project card that allows users to delete projects without opening them. Reuses the existing delete logic including project name confirmation to keep behavior consistent with the project settings page. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 22:02:19 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#1301