Jacek Tomaszewski

Results 35 comments of Jacek Tomaszewski

It might that be that when you ask for a page larger than the last one, it'll give you the last one. So for example if there's 3 pages, and...

I agree with @carpben that we should put more focus in README onto which node should be passed to `disableBodyScroll(targetElement)`. > Specifically, that the element we would like to allow...

It works for me with TypeScript (similar configuration to above - baggage is set as a preLoader). P.S. It's useful to f.e. set in your definitions file like `global.d.ts` a...

Good catch @ldonnet . Just a note: The general solution would be `translation_for(::Globalize.locale).send(friendly_id_config.slug_column).blank?` instead of `slug.blank?` .

I see. Seems like it's not that easy and maybe not even required (most of jobs are short-lived IMO). Maybe we could mention it in the VerkWeb interface at least,...

> https://github.com/visionmedia/supertest/issues/659#issuecomment-719601457 This is not because you're asing async/await, it's because you're not closing server after test finishes. Do it like that: ```ts let server: Server; beforeEach(() => { server...

Having this right now as well. Maybe related with https://github.com/styled-components/babel-plugin-styled-components/issues/271 . Interesting observation from our side: - we have some component files at `src/features/...` and some at `src/common/...`. - we...

Could we configure it with an option passed to cli/js dashboard server at least? edit: oh, sorry, just discovered `--minimal` cli option. Good enough for me for now, thanks ;]

I have the same error when using 2.1 version. Is there something in the documentation about using the 2.x version?

True. We encountered this problem [luckily, on staging env] just now in the same way as you did. Seems like, the easy workaround is to pass `removeUnresolved: true` into your...