fix prisma error on event-type update (#950)

* fix prisma error on event-type update

* fix hidden event-type update
pull/952/head
Mihai C 2021-10-14 16:40:24 +03:00 committed by GitHub
parent f4d2f3b3d1
commit a711670a70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
if (req.body.users) { if (req.body.users) {
data.users = { data.users = {
set: [], set: [],
connect: req.body.users.map((id: number) => ({ id })), connect: req.body.users.map((id: string) => ({ id: parseInt(id) })),
}; };
} }

View File

@ -165,7 +165,6 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
advancedPayload.availability = enteredAvailability || undefined; advancedPayload.availability = enteredAvailability || undefined;
advancedPayload.customInputs = customInputs; advancedPayload.customInputs = customInputs;
advancedPayload.timeZone = selectedTimeZone; advancedPayload.timeZone = selectedTimeZone;
advancedPayload.hidden = hidden;
advancedPayload.disableGuests = formData.disableGuests === "on"; advancedPayload.disableGuests = formData.disableGuests === "on";
advancedPayload.requiresConfirmation = formData.requiresConfirmation === "on"; advancedPayload.requiresConfirmation = formData.requiresConfirmation === "on";
} }
@ -176,6 +175,7 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
slug: asStringOrThrow(formData.slug), slug: asStringOrThrow(formData.slug),
description: asStringOrThrow(formData.description), description: asStringOrThrow(formData.description),
length: asNumberOrThrow(formData.length), length: asNumberOrThrow(formData.length),
hidden,
locations, locations,
...advancedPayload, ...advancedPayload,
...(team ...(team