Dan Manastireanu
Dan Manastireanu
Having similar issues with `MySQL 8.0.20` and `HikariCP 4.0.3` (deployed in Docker) ``` MySQL --wait-timeout=3900 # 65 min HikariCP max-lifetime: 3600000 # 60 min ``` `com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed...
We are also seeing this issue. Our current workaround is to use `distinctUntilChanged` ```ts this.authService.user$.pipe( distinctUntilChanged((prev, curr) => _.isEqual(prev, curr)) ).subscribe((user) => { console.log(user); }) ``` Edit: Also not sure...
@frederikprijck sorry, I oversimplified our actual code ... we don't really check on the user.sub In our case we only care about a few fields from the user, so we...
I'll try to reproduce this in a clean project. Meanwhile, I added some console.logs in our code as well as auth0-angular (a tap at the end of each observable from...
You are right, there must be something else triggering another emit. I double-checked the code and there are no other uses of AuthService on this page (at least from our...
I was able to create a small project that reproduces the problem. - `AuthHttpInterceptor` was the bit that made it reproducible https://github.com/danmana/auth0-double-trigger First set your credentials in `app.module.ts` ``` domain:...
Chart.js does not have support for stacked radar charts, so ng2-charts doesn't have it either See official docs: https://www.chartjs.org/docs/master/charts/radar/ You would have to extend the [Radar controller](https://github.com/chartjs/Chart.js/blob/2.9/src/controllers/controller.radar.js) and add some...
There are a few chart.js plugins that have zoom funcitonality: * [chartjs-plugin-crosshair](https://github.com/AbelHeinsbroek/chartjs-plugin-crosshair) * this is the one I recommend * works great, has some nice extra features (sync between charts,...
`ng2-charts` [deep clones the options](https://github.com/valor-software/ng2-charts/blob/development/projects/ng2-charts/src/lib/base-chart.directive.ts#L428), so you can't just change nested properties like that. You can either: 1. call `this.chart.refresh()` which will destroy the chart and build it again (this...
Chart.js does not support multiple line colors out of the box, but there is a way to override the default line rendering and add support: https://github.com/chartjs/Chart.js/issues/4895#issuecomment-341874938 Here is a jsfiddle...