KARASZI István
KARASZI István
Great catch, thanks for reporting
Probably it would be better to fix the test instead of hardcoding the locale in the codebase. What do you think?
Is there any chance that this will be merged?
The issue happens when you release your button when your cursor is outside of the drop area. If the cursor is inside the drop area then duplication does not occur.
Thank you for this! I am also looking forward to making this work in copy mode.
Sorry, I wasn't clear. I didn't mean that I was planning to fix this. But thanks for the heads-up in this case I might need to take a look.
This is related to this thread on the clojurians Slack: https://clojurians.slack.com/archives/C01UG9GMVBJ/p1680284891783359
I did a bit more investigation on the topic, it seems that something [like this](https://github.com/seancorfield/next-jdbc/blob/5c9d4795e31a71228f99d5c583b40b169921c5a8/doc/tips-and-tricks.md?plain=1#L403-L413) would be necessary: ```clojure (import '(org.postgresql.util PGobject)) (defn ->pgobject "Transforms Clojure data to a PGobject...
We need to schedule the jobs outside of the Clojure application (from triggers, e.g.). PostgreSQL has functions to create JSONB structures conveniently, but you can only construct EDN structures technically...
Of course, we can build a JSONB structure and convert that to a string and then read back that as a string and treat it like a JSONB but that...