(projects: string[])
| 208 | } |
| 209 | |
| 210 | function normalizeProjectList(projects: string[]): string[] { |
| 211 | return projects |
| 212 | .map((project) => { |
| 213 | if (!project || typeof project !== "string") return ""; |
| 214 | const trimmed = project.trim(); |
| 215 | if (!trimmed) return ""; |
| 216 | return parseLinkToPath(trimmed).trim(); |
| 217 | }) |
| 218 | .filter((project) => project.length > 0); |
| 219 | } |
| 220 | |
| 221 | function buildBlockingUpdates(input: TaskEditChangeInput): { |
| 222 | blockingUpdates: BlockingUpdates; |
no test coverage detected