fix(@desktop/wallet): pasting seed phrase fixed
This commit is contained in:
parent
4bff0b14ed
commit
64f167a32d
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue