Thibaut B.
Thibaut B.
@nihgwu Thank you for your answer, and yes I finilly did it with react-table component
I found a way that fix the problem but it's not satisfying: - Downgrade `react-dnd` and `react-dnd-html5-backend` to the same version used by our version of `react-sortable-tree` (11.1.3) - create...
@ffan0811 I have absolutely no idea why `key={1}` solve the problem, and it works too with `Math.random()` but as I try first with `1` and it were working, I let...
@vitrinh282 Have you other component that use react-dnd ? And what version do you use, and in the case of you have component using it... what version too ?
> @ThiBsc please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information. > > ``` > @microsoft-github-policy-service agree [company="{your company}"] >...
My temporary workaround: Rewrite the query like this: ```sql UPDATE "mytable" SET guid = REPLACE(guid, CHR(10), '') WHERE LENGTH(guid) != LENGTH(REPLACE(guid, CHR(10), '')); ``` Then register functions: ```typescript memoryDb.public.registerFunction({ name:...