hschletz
hschletz
Same on 4.2.2. I noticed that some extra JS files are generated by webpack: js/myApp-node_modules_nextcloud_dialogs_dist_legacy_mjs.js js/myApp-vendors-node_modules_nextcloud_dialogs_dist_chunks_DialogBase-2d1c3e06_mjs.js js/myApp-vendors-node_modules_nextcloud_dialogs_dist_chunks_FilePicker-65d21558_mjs.js I haven't noticed these files before. They are also not loaded (verified via...
When a CSP rule has a strict default set by the framework (like `strict-dynamic`), the only meaningful modification would be to disable it. This may have a negative impact on...
It's more complicated in case of `strict-dynamic`. We currently have: ```` script-src-elem 'strict-dynamic' 'nonce-...' ```` Any additional sources added by apps will be ignored. To allow them, `strict-dynamic` would have...
The app name is defined in appInfo/info.xml, which takes precedence over package.json. If I change the app name there, `appName` is set to that name. I also tested overriding the...
Yes, there is some custom configuration, but I don't see anything in there that might be relevant for this issue. However, I noticed that the error only occurs with `vite...
OK, I misunderstood that as "alphabetical order". The current implementation makes sense too, but should not be relied upon for the reasons outlined above (undocumented behavior, composition from multiple sources,...
The use case I have in mind is form validation, composed from multiple classes/traits, with dependencies between various validation steps. There are basically 2 categories of validation which should be...
The workaround with the "commonjs" plugin did not work for me, maybe because I don't compile the validation code to a file, but in-memory via the "virtual" plugin. I had...
Just noticed that the warning only occurs on 9.x, but the `:type="type"` line is also present in master (also without a corresponding prop/variable). Looks like Vue3 reveals a preexisting problem.
Fixed by #6173.