diff --git a/electrum/gui/qml/components/InvoiceDialog.qml b/electrum/gui/qml/components/InvoiceDialog.qml index 18697fe2f..8aab784c9 100644 --- a/electrum/gui/qml/components/InvoiceDialog.qml +++ b/electrum/gui/qml/components/InvoiceDialog.qml @@ -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') }