Michael Hoffmann

Results 10 comments of Michael Hoffmann

@timgcarlson I just had the same problem and fixed it this way: I modified my `app/build.gradle` to ``` android { compileSdkVersion 27 buildToolsVersion "27.0.3" dependencies { compile project(':react-native-i18n') compile project(':react-native-tts')...

Finally, I decided to use [Angular Material CdkStepper](https://material.angular.io/cdk/stepper/overview) as I am totally flexible there. But anyways, your component is nice!

Link to StackBlitz project to reproduce the issue: https://stackblitz.com/edit/js-inyakv?file=index.js

Any updates? Can someone point me in the right direction where I could fix this on my own in this project?

Found this related Chrome bug ticket: https://bugs.chromium.org/p/chromium/issues/detail?id=774830

I have the same problem with rc7 and rc8 (also edge). I saw this error in the Netlify logs of my function: ``` Aug 12, 04:11:04 PM: 703edbc4 ERROR [nuxt]...

Thanks @pi0, the following workaround works for the deployed version: ```ts build: { transpile: ['websocket'] } ``` But if I try to start it locally with `nuxi dev` then I...

> @Mokkapps I fixed it by adding conditional logic transpile based on env > > ```js > build: { > transpile: [process.env.NODE_ENV === 'production' ? 'websocket' : ''], > }...

> Not exactly sure what's going on but I think it may be related to how nuxt does the transitions between pages. > > If you wrap the `ContentDoc` in...

Hi, your extension is amazing! Vue support would be awesome! Vue 3 now also supports TypeScript in `.vue` files: ```vue ```