diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-17 21:45:31 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-17 21:45:31 -0400 |
commit | 54876363de44791ba65b6c43b795f8d0c3548ecc (patch) | |
tree | 02a6942898b3937c6db3febf4e7f1cd07581b3f0 /ufund-ui/src/app/components/cupboard/cupboard.component.ts | |
parent | 6415df5634a815964682ba009da79de46c724a14 (diff) | |
download | JellySolutions-54876363de44791ba65b6c43b795f8d0c3548ecc.tar.gz JellySolutions-54876363de44791ba65b6c43b795f8d0c3548ecc.tar.bz2 JellySolutions-54876363de44791ba65b6c43b795f8d0c3548ecc.zip |
Fix tests
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.ts b/ufund-ui/src/app/components/cupboard/cupboard.component.ts index 0fec0e0..a930f06 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.ts +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.ts @@ -89,7 +89,7 @@ needs: any; console.log(form); const need: Need = { name: form.name, - id: 0, //system will control this + id: form.id, //system will control this maxGoal: form.maxGoal, type: GoalType[form.type as keyof typeof GoalType], filterAttributes: [], |