SettingsInfo: fix number string formatting

pull/7/head
selsta 4 years ago
parent 585fb2810d
commit fdb7f806fa
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -230,7 +230,7 @@ Rectangle {
appWindow.showStatusMessage(qsTr("Invalid restore height specified. Must be a number or a date formatted YYYY-MM-DD"),3);
}
inputDialog.onRejectedCallback = null;
inputDialog.open(currentWallet ? currentWallet.walletCreationHeight : "0")
inputDialog.open(currentWallet ? currentWallet.walletCreationHeight.toFixed(0) : "0")
}
MouseArea {