Markus Hedlund
Markus Hedlund
For me Caspar Client crashes when I try to connect to ATEM switch (7.2 fw). Now I cannot start Caspar Client, because it crashes immediately. Is there any way to...
Thank you @dotarmin! I will try to debug when I have access to an ATEM switcher again. Where is the database stored on Windows? I failed to find it.
Thank you. I was able to prune the database and run Client with windbg. These are the last log lines. ``` ModLoad: 00007ffc`50080000 00007ffc`5008e000 C:\WINDOWS\System32\winrnr.dll ModLoad: 00000000`65e30000 00000000`65e65000 C:\Program Files\Bonjour\mdnsNSP.dll...
Change your insertText function to ``` insertText: function () { console.log("Button clicked"); this.$refs.editor.$refs.trix.editor.setSelectedRange([0, 0]); this.$refs.editor.$refs.trix.editor.insertString("Hello"); }, ``` You need to access the trix editor inside the component. `this.$refs.editor` in your...
See https://github.com/basecamp/trix/issues/680
Hello! What is the status on this? :) Would be awesome to have for inner functions to execute code after a transaction is commited. ``` await doStuff1(trx) await doStuff2(trx) await...
I'm having the same issue.. @joepetrakovich did you resolve this?
Tested this on Node v16.13.1 in my project. I get crashes on these lines: - vue-translation-manager/src/index.js:159 - vue-translation-manager/src/util.js:17:23 It seems that it assumes that node.value is always string, and doesn't...
If someone else needs this: ``` sequelize.getQueryInterface().QueryGenerator.getWhereConditions({ a: 1, b: 2, c: 3 }) // "a" = 1 AND "b" = 2 AND "c" = 3 ```
Try to replace it with filter_var. If it works, PRs are welcome :) https://www.php.net/manual/en/filter.examples.validation.php