remix-run / example-trellix

A partial trello board clone with Remix
https://trellix.fly.dev
290 stars 47 forks source link

Fix submit on blur for editable texts #8

Open danielweinmann opened 6 months ago

danielweinmann commented 6 months ago

Right now, if you change a board or column name and blur the text, you'll get a Cannot submit element that is not <form>, <button>, or <input type="submit|image"> error and it won't submit the form.

I've fixed it by submitting the current target's parent element. What do you think about this solution?