dexster

Results 12 comments of dexster

Thanks for the feedback. The main issue I am having is the ion-card not displaying until inner components are loaded. Preloading the components upfront does help but wouldn't it be...

I have the same issue. I took the "expected" screenshots on my second monitor but when the tests run on my retina display they fail. If you look carefully at...

Here is a demo of the issue. Note `foo()` fails when narrowing using `if (!result.success) {` to narrow while `bar()` passes using `if (result.success === false) {` https://stackblitz.com/edit/angular-ivy-hytjux?file=src/app/app.component.ts

Found the issue. In order to do this, `if (!result.success)`, strictNullChecks must be set to true. Alternatively, you can do this: `if (result.success === false)` or ``` if (!result.success) {...

Still happens. I'm using plain JS, no framework [https://jsbin.com/jadosag/1/edit?html,js,output](https://jsbin.com/jadosag/1/edit?html,js,output)

The argTypes used by ArgsTable look like this. Isn't the defaultValue deprecated in this position? ``` myDefaultValue: control: {type: "text"} defaultValue: "the default value" table: {category: "inputs", type: {…}} ```...

@rudyhadoux I also had this with my ng v12 upgrade and I'm also using amplify. I did a manual install of graphql to get it up to v15.5 and all...

PR submitted but I see that the generated file, markdown-to-jsx.js, is committed to the repo. Shouldn't this be ignored? I'm getting fails in the PR and it's difficult to pinpoint...

@probablyup Will this be merged or is there something that needs to be actioned?