Andrew Aponte
Andrew Aponte
I'm throwing my hat in the ring in favor of preventing the automatic removal of parentheses with mixed operators. As multiple people before me have already stated, leaving the parentheses...
+1 I'm experiencing this same issue with Vue (technically a Nuxt app). If it helps for troubleshooting purposes - you can reproduce by [creating a new Nuxt project](https://nuxtjs.org/docs/get-started/installation), and then...
FYI here's another instance where Svelte and this plugin don't play nicely together: **Before** ``` import foo from "$lib/foo"; import bar from "@bar"; ``` **After** ``` import bar from "@bar";...
I'd have to see context and/or more of your code, but setting the font family inside of the `labelStyle` attribute work of the `RadioButtonLabel` component seems to work for me:...
I'm seeing the same issue with Angular 8: ``` CardComponent.html:13 ERROR NullInjectorError: StaticInjectorError(AppModule)[LinkDirective -> ElementRef]: StaticInjectorError(Platform: core)[LinkDirective -> ElementRef]: NullInjectorError: No provider for ElementRef! ``` I've tried the following: -...
+1 !!
+1 It would be incredibly useful if we could specify where in the DOM the time picker gets placed, as this would allow us to work around the scrolling issues...
Changing the type attribute on the input element from "text" to "tel" seems to fix the issue. `` I've tested this out in MS Edge, and in Google Chrome v45.0...