Jim Hlad

Results 13 comments of Jim Hlad

For anyone looking to remove the "series-1" text from the tooltip, adding the following CSS to my project's stylesheet worked: ```css .apexcharts-tooltip-text-label { display: none !important; } ``` Hope this...

Updated to address issue outlined here: https://github.com/nuxt/image/pull/614#issuecomment-1299377666

Updated to fix issue with srcset image generation

@pi0 Happy to help test this out once it's merged. Or if there's a way to install Nuxt image from PR / commit hash.

Attempted to continue some of the work here #629 . Playground seems to be working locally but my knowledge of the Nuxt framework isn't that deep, so I defer to...

Also noticed that because the `X-Nitro-Prerender` header uses a comma as a delimiter to separate URLs, and certain providers (e.g. IPX) also use a comma to separate arguments, that this...

Fixed another small issue with srcset values not being trimmed: https://github.com/nuxt/image/pull/629/commits/4cb6294e5ceeddd717b3f50acd9e7f08114a5e82 (PR #629 )

@ricky11 This may be happening because static image generation is not supported yet: #548

I know this is not the most elegant solution in the world, but worked for me: ``` mounted() { let _this = this; setTimeout(function() { _this.$refs.addressInput.$el.setAttribute('autocomplete', 'disabled'); }, 1000); }...

If anyone else encounters the same issue, came up with a inelegant but working fix here: https://github.com/olefirenko/vue-google-autocomplete/issues/62#issuecomment-447904883