Set up contributor and detail scene

This commit is contained in:
Dennis Schoepf 2021-07-24 17:19:54 +02:00
parent 18850e9fb8
commit e6536ca7c8
8 changed files with 73 additions and 3 deletions

View file

@ -64,3 +64,7 @@ export function generateEdges(subprojects: SubProject[]): Edge[] {
})
);
}
export function getSubproject(name: string, projects: SubProject[]): SubProject {
return projects.filter((project) => project.name === name)[0];
}