You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, <wallet-multi-button /> generates HTML <button> tag without any type. When used inside <form> this makes the button to be the submit button, and when user presses Enter in any text input it opens the wallet select popup.
<wallet-multi-button /> should accept type="button" property and pass it to the underlying <button>. Perhaps it should simply pass all unknown props with <button v-bind="$attrs">.
The text was updated successfully, but these errors were encountered:
Currently,
<wallet-multi-button />
generates HTML<button>
tag without anytype
. When used inside<form>
this makes the button to be the submit button, and when user presses Enter in any text input it opens the wallet select popup.<wallet-multi-button />
should accepttype="button"
property and pass it to the underlying<button>
. Perhaps it should simply pass all unknown props with<button v-bind="$attrs">
.The text was updated successfully, but these errors were encountered: