From 0958c3231008cd0dd8e49fc7b284c7c5e404f92b Mon Sep 17 00:00:00 2001 From: dengqichen Date: Fri, 10 Jan 2025 14:45:39 +0800 Subject: [PATCH] 1 --- .../Application/List/components/ApplicationModal.tsx | 7 ++++++- frontend/src/pages/Deploy/Application/List/types.ts | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/Deploy/Application/List/components/ApplicationModal.tsx b/frontend/src/pages/Deploy/Application/List/components/ApplicationModal.tsx index c9980f29..607debc9 100644 --- a/frontend/src/pages/Deploy/Application/List/components/ApplicationModal.tsx +++ b/frontend/src/pages/Deploy/Application/List/components/ApplicationModal.tsx @@ -355,7 +355,12 @@ const ApplicationModal: React.FC = ({ } }} > - {group.name} +
+ {group.fullName} + + {group.fullPath} + +
{group.id === field.value && ( )} diff --git a/frontend/src/pages/Deploy/Application/List/types.ts b/frontend/src/pages/Deploy/Application/List/types.ts index 16998698..50d31020 100644 --- a/frontend/src/pages/Deploy/Application/List/types.ts +++ b/frontend/src/pages/Deploy/Application/List/types.ts @@ -57,6 +57,8 @@ export interface RepositoryGroup { groupId: number; parentId?: number; path: string; + fullName: string; + fullPath: string; externalSystemId: number; avatarUrl?: string; webUrl?: string;