diff --git a/index.html b/index.html index 6544e36..7d08dfa 100644 --- a/index.html +++ b/index.html @@ -633,7 +633,7 @@
-
+
Hide address

Don't show my address on header. *Only applies to this device. @@ -1203,14 +1203,20 @@

-
+
-

Transaction sent

- +
+

Transaction sent

+

Confirmation of transaction might take few hours.

+
+
+ Transaction ID + +
diff --git a/scripts/components.js b/scripts/components.js index b19787c..482da5c 100644 --- a/scripts/components.js +++ b/scripts/components.js @@ -196,7 +196,7 @@ customElements.define('sm-form', class extends HTMLElement { this.submitButton.disabled = this.invalidFields.length; } handleKeydown(e) { - if (e.key === 'Enter' && !e.target.tagName.includes('TEXTAREA')) { + if (e.key === 'Enter' && e.target.tagName.includes('SM-INPUT')) { if (!this.invalidFields.length) { if (this.submitButton) { this.submitButton.click()