(project: Project)
| 8 | }; |
| 9 | |
| 10 | export function projectV1Name(project: Project) { |
| 11 | if (isDefaultProject(project.name)) { |
| 12 | return "Unassigned"; |
| 13 | } |
| 14 | |
| 15 | return project.title; |
| 16 | } |
| 17 | |
| 18 | export function filterProjectV1ListByKeyword<T extends Project>( |
| 19 | projectList: T[], |
no test coverage detected