Csaba

Results 9 comments of Csaba

I had the same issue. The play button didn't show, and the poster was actually above the video, so there was no way of starting it. The above code snippet...

In my case there are no incorrectly nested elements, but: 1. The server creates the page, and there is a list on it 2. On the live server, based on...

Note, I made some sample repro code with my previous example: https://github.com/csabaxyz/gridsome-issue-650 The readme explains how to build it. The date is determined at build time, and after 2 minutes...

@marcvangend That would definitely be a step forward. However there aren't any real issues with the code that I have, so it basically cannot be debugged. But, even if the...

NativeBase is not supported anymore, so I don't think there will be updates. Source: https://nativebase.io/blogs/road-ahead-with-gluestack-ui > The coming three to four months will be a bittersweet period for us —...

You can turn your sub-query into a query like this: ```ts const subq = sql`(SELECT CASE WHEN LENGTH((SELECT COALESCE(MAX(substr(title,1)), '0') FROM todo)) >= 5 THEN LENGTH((SELECT COALESCE(MAX(substr(title,1)), '0') FROM todo))...

Have the same issue as you. For now, I found this comment: https://github.com/denoland/deno_docker/issues/100#issuecomment-762338543 Using this seems to work: ```dockerfile FROM lukechannings/deno:v1.20.5 ``` Or your example: ``` docker run -it --rm...

Hey @sudoforge, I had the exact same issue that the OP is facing. I'm on a Mac, and installed git-bug via Homebrew. I also added an identity before trying the...

I thought I made some mistake in my code before I found this issue, but I think I was able to create a minimum code to reproduce what's happening: https://jsfiddle.net/2er70a8t/5/...