[PR #362] [MERGED] Show delete card in individual server, project and server pages #449

Closed
opened 2026-03-03 11:30:00 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/362
Author: @manikanta9176
Created: 7/24/2025
Status: Merged
Merged: 7/28/2025
Merged by: @manikanta9176

Base: mainHead: feat/show-delete-card-in-detail-pages


📝 Commits (6)

  • 1ff89b5 feat: enhance Danger component with server reset and delete functionality
  • bfe7d3e feat: add project settings tab and refactor project page structure
  • 4c75669 feat: add Service Settings tab and integrate into project layout
  • 7e9c3b3 feat: enhance service layout with new icons and section headings for improved UI
  • 2fbb377 feat: update GeneralTab layout with server connection handling and improved service management features
  • 75d685c Merge branch 'main' into feat/show-delete-card-in-detail-pages

📊 Changes

22 files changed (+814 additions, -371 deletions)

View changed files

📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/page.tsx (+125 -70)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/layout.client.tsx (+3 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/layout.tsx (+1 -92)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/page.tsx (+11 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/servers/[id]/page.tsx (+6 -2)
📝 src/components/DeleteProjectDialog.tsx (+6 -4)
src/components/project/ProjectSettingsTab.tsx (+78 -0)
src/components/project/ProjectTabList.tsx (+62 -0)
📝 src/components/servers/Danger.tsx (+125 -45)
📝 src/components/service/Backup.tsx (+4 -1)
📝 src/components/service/CreateService.tsx (+3 -3)
📝 src/components/service/DeleteServiceDialog.tsx (+3 -13)
📝 src/components/service/DeploymentList.tsx (+5 -1)
📝 src/components/service/DomainsTab.tsx (+23 -15)
📝 src/components/service/GeneralTab.tsx (+136 -9)
📝 src/components/service/LogsTabClient.tsx (+10 -1)
📝 src/components/service/ScalingTab.tsx (+4 -0)
📝 src/components/service/ServiceList.tsx (+2 -7)
src/components/service/ServiceSettingsTab.tsx (+79 -0)
📝 src/components/service/VariablesForm.tsx (+69 -63)

...and 2 more files

📄 Description

No description provided


🔄 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/dflow-sh/dflow/pull/362 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 7/24/2025 **Status:** ✅ Merged **Merged:** 7/28/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `feat/show-delete-card-in-detail-pages` --- ### 📝 Commits (6) - [`1ff89b5`](https://github.com/dflow-sh/dflow/commit/1ff89b519eaffd1dfa9a320c5097a5c889f13ba7) feat: enhance Danger component with server reset and delete functionality - [`bfe7d3e`](https://github.com/dflow-sh/dflow/commit/bfe7d3ee894a413a0dd1e75375c396a8ad337f28) feat: add project settings tab and refactor project page structure - [`4c75669`](https://github.com/dflow-sh/dflow/commit/4c7566985e9336bbefe849a9eb10099a020e26e1) feat: add Service Settings tab and integrate into project layout - [`7e9c3b3`](https://github.com/dflow-sh/dflow/commit/7e9c3b3487ea33f537f34613cbac3078c4b0214c) feat: enhance service layout with new icons and section headings for improved UI - [`2fbb377`](https://github.com/dflow-sh/dflow/commit/2fbb377039b90f18b4c1d0723877b7db7b6b7b96) feat: update GeneralTab layout with server connection handling and improved service management features - [`75d685c`](https://github.com/dflow-sh/dflow/commit/75d685c85a4d06cbf2d6d5526ab8fcb9310559c8) Merge branch 'main' into feat/show-delete-card-in-detail-pages ### 📊 Changes **22 files changed** (+814 additions, -371 deletions) <details> <summary>View changed files</summary> 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/page.tsx` (+125 -70) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/layout.client.tsx` (+3 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/layout.tsx` (+1 -92) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/page.tsx` (+11 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/servers/[id]/page.tsx` (+6 -2) 📝 `src/components/DeleteProjectDialog.tsx` (+6 -4) ➕ `src/components/project/ProjectSettingsTab.tsx` (+78 -0) ➕ `src/components/project/ProjectTabList.tsx` (+62 -0) 📝 `src/components/servers/Danger.tsx` (+125 -45) 📝 `src/components/service/Backup.tsx` (+4 -1) 📝 `src/components/service/CreateService.tsx` (+3 -3) 📝 `src/components/service/DeleteServiceDialog.tsx` (+3 -13) 📝 `src/components/service/DeploymentList.tsx` (+5 -1) 📝 `src/components/service/DomainsTab.tsx` (+23 -15) 📝 `src/components/service/GeneralTab.tsx` (+136 -9) 📝 `src/components/service/LogsTabClient.tsx` (+10 -1) 📝 `src/components/service/ScalingTab.tsx` (+4 -0) 📝 `src/components/service/ServiceList.tsx` (+2 -7) ➕ `src/components/service/ServiceSettingsTab.tsx` (+79 -0) 📝 `src/components/service/VariablesForm.tsx` (+69 -63) _...and 2 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:30:00 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#449
No description provided.