This commit is contained in:
dengqichen 2025-01-10 14:45:39 +08:00
parent e00a824504
commit 0958c32310
2 changed files with 8 additions and 1 deletions

View File

@ -355,7 +355,12 @@ const ApplicationModal: React.FC<ApplicationModalProps> = ({
} }
}} }}
> >
{group.name} <div className="flex flex-col">
<span className="font-medium">{group.fullName}</span>
<span className="text-xs text-muted-foreground truncate">
{group.fullPath}
</span>
</div>
{group.id === field.value && ( {group.id === field.value && (
<Check className="ml-auto h-4 w-4" /> <Check className="ml-auto h-4 w-4" />
)} )}

View File

@ -57,6 +57,8 @@ export interface RepositoryGroup {
groupId: number; groupId: number;
parentId?: number; parentId?: number;
path: string; path: string;
fullName: string;
fullPath: string;
externalSystemId: number; externalSystemId: number;
avatarUrl?: string; avatarUrl?: string;
webUrl?: string; webUrl?: string;