add lead time and complexity

This commit is contained in:
Julien Calixte
2023-07-22 12:24:27 +02:00
parent 835e0cf642
commit 5606da5362
2 changed files with 3 additions and 1 deletions

View File

@@ -203,5 +203,6 @@ const featureNames = [
export const features: Feature[] = featureNames.map((name) => ({
name,
complexity: Math.floor(Math.random() * 5)
complexity: Math.floor(Math.random() * 5),
leadTime: 0
}))