chemicalkosek
chemicalkosek
My little wish is to fix this long lasting issue I've created a long time ago https://github.com/ant-design/ant-design/issues/29907 Judging by the number of reactions to post and comments, I'm not the...
> It could be really nice to have _DatePicker, Calendar_ and other "date related" input to use a standart _Date_ object as a value, and output a standart _Date_ object....
Hey @olivermrbl Are you still working on this? The problem still exists. Can edit but can't remove. Error when hitting save after removing option Error on backend: ``` error: Cannot...
Actually it looks like it was fixed down the road already. The variant visibility, not the truncation.
Still the same. Video: https://user-images.githubusercontent.com/11018707/178988106-9a8d9961-aa68-4c74-a80d-b690d5191b95.mp4 POST request has these prices after making them 50,50 and 10,50: ```javascript [ { "id": "ma_01G7A8RV2FPQ6WHZFNBAJZF7XB", "created_at": "2022-07-06T17:26:21.464Z", "updated_at": "2022-07-14T12:41:27.105Z", "deleted_at": null, "currency_code": "pln", "amount":...
@olivermrbl I have found the culprit of it. I have put a console.log here: https://github.com/medusajs/admin/blob/master/src/domain/products/product-form/sections/prices.tsx#L69 ```javascript console.log({ amount }) || onChange({ ...value, amount }) } amount={value?.amount} /> ``` And I...
@olivermrbl Changing https://github.com/medusajs/admin/blob/64c2b2293530e078130e74e1a0180a2a1c237ff5/src/components/organisms/currency-input/index.tsx#L186 to: ```javascript const amount = parseFloat(value.replace(/,/, ".")) ``` fixes it for me. But it is not a great solution for you guys: https://stackoverflow.com/questions/7431833/convert-string-with-dot-or-comma-as-decimal-separator-to-number-in-javascript It might take more...
Ok, everybody here wrote that it doesn't support case insensitive search. But in my case, it's actually working on the Prisma demo servers (which internally use MySQL) But when I...
My Docker knowledge is too thin to help you with the pull request. Could you somehow point me into direction how would I need to run pg_dumpall or maybe pg_dump...
Yes, plain JS, I've being using your config from the day it was released. It's a Nextjs project (initially based on your Advanced React course years ago) .eslintrc: ``` {...