Aloysius999

Results 7 comments of Aloysius999

This is still an issue in prisma v5.10. Does anyone have a work-around for the problem? I cleaned out my DB, ran migrate dev - all was well. Added a...

I have a similar requirement to disable text input in my Next.js project - I'd like to keep the toolbar active since I want for example the Preview button to...

This is the way to disable input in Next.js: ``` const [simpleMDEEvents, setSimpleMDEEvents] = useState({ beforeChange: (instance: any, changeObj: any) => { console.log("beforeChange", changeObj); changeObj.canceled = true; }, }); ```

This issue persists in Prisma version 5.16.1

This issue still persists in Prisma version 5.17.0

This issue is now holding me up and I can not progress with my search feature. I have tried creating a raw query and for example this query works fine...

This is my Prisma query ``` const assetCards = await prisma.listingItem.findMany({ where: { userId: !userId ? undefined : Number(userId), assets: { every: { assetType: AssetType.Image, }, }, saleControls: { every:...