David Anitoiu

Results 8 comments of David Anitoiu

The culprit is line 183 here. It's missing a null-check. https://github.com/MrBlenny/react-flow-chart/blob/master/src/container/actions.ts ```javascript if (config.readonly) { return chart } ``` Should be something like ```javascript if(config && config.readonly) ``` onDeleteKey takes...

Can you provide some steps to reproduce this and provide some error log?

I can delete both nodes and links nowadays when pressing Delete or Backspace. This issue also seems rather old. Is this still a thing?

Not sure if it's the correct way to do it, but here's how I did it. I basically left the chart to itself, and let redux handle only the business...

With all due respect, This seems more of that digital ocean spam. To actually contribute, please consider looking into one of the existing open issues or project goals

I'd be interested to be the maintainer. Already had a look at some of the code and I'm using it actively in some of my projects.

Can't we just replace the method with this? ```javascript const formData = new FormData(form); return Object.fromEntries(formData.entries()); ``` Not sure if it would cause compatibility issues or whatnot. But it did...

I'm not sure on the side-effects on this one, but so far I add an empty catch to the `navigator.serviceWorker.getRegistrations().then(...)` every time I run `gatsby develop` Takes care of the...