N-FIN-54: fix category selection can not be cleared

This commit is contained in:
Markus Thielker 2024-03-17 15:36:34 +01:00
parent 9796962a24
commit 0e0e152a6e
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ export default async function entityCreateUpdate({
data: {
name: name,
type: type,
defaultCategoryId: defaultCategoryId,
defaultCategoryId: defaultCategoryId ?? null,
},
},
);
@ -49,7 +49,7 @@ export default async function entityCreateUpdate({
userId: user.id,
name: name,
type: type,
defaultCategoryId: defaultCategoryId,
defaultCategoryId: defaultCategoryId ?? null,
},
});

View file

@ -38,7 +38,7 @@ export default async function paymentCreateUpdate({
date: date,
payorId: payorId,
payeeId: payeeId,
categoryId: categoryId,
categoryId: categoryId ?? null,
note: note,
},
},
@ -57,7 +57,7 @@ export default async function paymentCreateUpdate({
date: date,
payorId: payorId,
payeeId: payeeId,
categoryId: categoryId,
categoryId: categoryId ?? null,
note: note,
},
});