TownSquareXYZ / tonconnect-ui-vue

TonConnect UI Vue is a Vue UI kit for TonConnect SDK.
Apache License 2.0
21 stars 6 forks source link

Allow <TonConnectButton> to generate <button type="button"> #16

Open IlyaSemenov opened 1 month ago

IlyaSemenov commented 1 month ago

<TonConnectButton> always generates <button> without type= attribute. As such, it can't be used inside <form>, as it works as <button type="submit"> and intercepts form submits when users presses Enter.

There should be a way to generate <button type="button">. In fact, it should be the default mode, as there is never a reason for Wallet Connect button to behave as a form submit button.

IlyaSemenov commented 1 month ago

This seems to require a change in upstream as well.