Andrew Carr
Andrew Carr
Perhaps related, I was using a search function with an additional parameter which is no longer working since v9.1.0, commit 81f2c59. ```typescript search = (templateParam: number) => (text$: Observable) =>...
@KyleThenTR I ended up using other component variables to find what would have been the template parameter. I think my use case was lucky, since the parameter I need is...
Having this same issue. It seems related to how the domain is parsed in https://github.com/bitwarden/mobile/blob/master/src/Core/Utilities/DomainName.cs - TLD's are expected to be included in the [public suffix list](https://publicsuffix.org/list/), and since `lan`...
Without stepping through the code to confirm, to me it looks like in BitWarden's `jslib.getDomain()` [util.ts#L229](https://github.com/bitwarden/jslib/blob/1bd968a0234f61e0d873da6017008db067b2e491/common/src/misc/utils.ts#L229), tldjs is returning a urlObject with `domain: null` (as expected since there's no valid...
I've done some trial-and-error testing on this today and noticed that rendering in Safari (16.2, 18614.3.7.1.5, in my case) seems to fail when there are any interactions with the canvas....
I was able to fix this without setting an exact container height by defining an [aspect-ratio](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio) instead. The [default aspect ratio](https://www.chartjs.org/docs/latest/api/interfaces/Defaults.html#aspectratio) for Chart.js is 2, so doing this restores Chart.js...
> I - for the life of mine - can not get it to shrink @akleimrey This is likely since the new resize behaviour prioritizes maintaining the container height. Have...
Can confirm v4.11.0 and v5.1.0rc2 both have this display issue on Windows 11 when display scaling is set to 150%. Resetting the display scaling to 100% resolves the issue, or...