1
0

add address to InvoiceDialog for OnchainInvoice type

This commit is contained in:
Sander van Grieken
2022-06-14 11:53:16 +02:00
parent 02ccd46fd5
commit 1d5a273629

View File

@@ -90,6 +90,19 @@ Dialog {
}
}
Label {
visible: invoice.invoiceType == Invoice.OnchainInvoice
text: qsTr('Address')
}
Label {
visible: invoice.invoiceType == Invoice.OnchainInvoice
Layout.fillWidth: true
text: invoice.address
font.family: FixedFont
wrapMode: Text.Wrap
}
Label {
text: qsTr('Status')
}