Jacek Tomaszewski

Results 81 comments of Jacek Tomaszewski

Same here. `$product->getCategoryIds()` returns only the last category somehow. Magento 2.4.1 . Wondering how it can be fixed?

OK, I've found the fix. The code for loading categories need to looks like this: ```php $productCategories = $this->getCurrentProduct()->getCategoryCollection(); if (count($productCategories) === 0) { return []; } $productCategory = current(iterator_to_array($productCategories));...

I have the same troubles as in https://github.com/denoland/deno/issues/20594#issuecomment-1730047671 while connecting to an Azure MS SQL server using mssql library . In node.js, I can connect easily. In deno, when running...

I've tried handcrafting it but also failed. I created `app/[...all]/router.ts` file with following contents: ```ts import httpProxy from "http-proxy"; export async function GET(request: Request) { const proxy: httpProxy = httpProxy.createProxy();...

I guess it's the same as https://github.com/testing-library/react-testing-library/issues/1187 . Jest [since v27](https://github.com/jestjs/jest/blob/main/CHANGELOG.md#2700) uses [new implementation](https://github.com/jestjs/jest/pull/7776) of fake timers, and as described in https://github.com/testing-library/react-testing-library/issues/1187, testing library doesn't work with them as of...

I had the same error, creating a new box fixed it.

Might be dependant on https://github.com/globalize/globalize/pull/328 , reading through it now.

It's working good, but when trying to save the object, globalize raises validation error for the translation object of default locale (which shouldnt be created at all). More info in...

IMHO Propably this whole issue comes down to https://github.com/fabn/activeadmin-globalize/pull/17 and https://github.com/globalize/globalize/pull/328 .

Currently setting it up in my app. Some info lies here https://github.com/tpitale/staccato/issues/38 .