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;