♻️ (feature) reverse parent child link with feature step index in feature

This commit is contained in:
Julien Calixte
2023-07-22 12:58:02 +02:00
parent c1a26ac429
commit ff11534291
6 changed files with 63 additions and 70 deletions

View File

@@ -1,3 +1,5 @@
import { Feature } from '@/modules/feature/feature'
const featureNames = [
'Dachshund',
'Jagdterrier',
@@ -204,5 +206,7 @@ const featureNames = [
export const features: Feature[] = featureNames.map((name) => ({
name,
complexity: Math.floor(Math.random() * 5),
leadTime: 0
leadTime: 0,
status: 'doing',
step: Infinity
}))