Alexis Reigel
Alexis Reigel
Apparently the minus guys changed something on the backend (again). Or, which I suspect, they deprecated the old api. If the latter is true, I'd have to update my application...
It seems as if some other application is locking the clipboard. Can you run the code https://gist.github.com/1382028 when that problem occurs? That should show you the process that locks the...
I'm currently using the following workaround: ```svelte onMount(() => { // the programmatic call to `prefetch` doesn't seem to work. triggering // the `rel=prefetch` on the link element seems to...
[@testing-library/svelte](https://testing-library.com/docs/svelte-testing-library/example) could also be a way to implement component tests. It's also mentioned in the [Svelte FAQ](https://svelte.dev/faq#how-do-i-test-svelte-apps) (beside uvu).
This seems to be fixed starting with 0.26.0b4.
We're experiencing the same error on the call `var outlook = new Application()`: ``` Unable to create instance of: This is typically because you have no access to the desktop...
> unless you provide all the information about your app, system, configuration, permissions and a reproducible sample, Before I provide *all the information* (which sounds like a lot) I wanted...
@kev160967 Thanks, but this is the NetOfficeFW repo :sweat_smile:, and we are using this one. The previous https://github.com/netoffice/NetOffice looks abandoned (hasn't been updated since 2020). Unless you mean something different?
I implemented a task list plugin https://github.com/koffeinfrei/quill-task-list. The implementation is fairly straight forward, but has one drawback: > For now the click triggers a dummy update, because the css class...
@jhchen there's also an open PR https://github.com/koffeinfrei/quill-task-list/pull/1 where @CJEnright came up with a better solution for the click handling.