Set up contributor and detail scene
This commit is contained in:
parent
18850e9fb8
commit
e6536ca7c8
8 changed files with 73 additions and 3 deletions
|
|
@ -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];
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue