fix(@desktop/wallet): pasting seed phrase fixed

This commit is contained in:
Sale Djenic 2022-09-23 13:13:52 +02:00 committed by saledjenic
parent 4bff0b14ed
commit 64f167a32d
1 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import StatusQ.Controls 0.1
import utils 1.0
import shared.stores 1.0
import shared.controls 1.0
import "../stores"
@ -51,7 +52,7 @@ StatusGridView {
property int seedPhraseInputHeight: 48
property var mnemonicInput: []
property string errorString: ""
readonly property var seedPhraseWordsOptions: ([12, 18, 24])
readonly property var seedPhraseWordsOptions: [12, 18, 24]
function getSeedPhraseString() {
var seedPhrase = ""
@ -84,6 +85,10 @@ StatusGridView {
}
}
Timer {
id: timer
}
onIsValidChanged: {
if(isValid) {