Andre Wachsmuth
Andre Wachsmuth
Well, we did have the the same issue. We pin the exact versions of many dependencies (due to the [dependencyConvergence](https://maven.apache.org/enforcer/enforcer-rules/dependencyConvergence.html) rule), and we pinned `msal4j` to `1.15.0` (to stay up-to-date,...
We've come across this issue too. It sometimes happens with pointer devices (e.g. tablet devices or when using the touch device emulation in Google Chrome). I think it would be...
We have a similar issue, although I think the main problem here is that the `load` event is fired before the loading has actually finished. We're using something like ```ts...
I guess it depends on how much we need to add or change. Ideally, it would be great if it were just a simple wrapper. I know a fair bit...
Thanks for reporting. Hmm, I'm not sure what exactly was bad about the pathname, but I guess I should at least include the pathname in the error message, to make...
I did that intentionally when I added biome integration, since spotless is a formatter. On a technical level, it shouldn't be a problem to run the linter and apply the...
I haven't used Diktat yet, so I don't know what it does exactly. Just to be clear, what would you like to happen? 1. Apply fixes for linter issues that...
I would probably split that into 2 options (`failOnLintRuleViolations` and `applyLintRuleFixes=(safe|unsafe)`) Doesn't sound too hard to implement, but since I'm not the maintainer of spotless (I just added the biome...
Starting with version 2.0, biome now has rules that require scanning the entire project: > Since Biome v2, we’ve extended its architecture with a tool called Scanner. The Scanner is...
Yeah you kinda have to read some source code: https://github.com/Studio-42/elFinder/blob/master/js/commands/preference.js#L23-L32 E.g. to only show the `Theme` tab: ```js $(".elfinder").elfinder({ commandsOptions: { preference: { categories: { theme: ["theme"] }, }, },...