N-FIN-54: fix category selection can not be cleared (#56)

Fixes #54
This commit is contained in:
Markus Thielker 2024-03-17 15:36:57 +01:00 committed by GitHub
commit bdbb80121a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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,
},
});