diff --git a/frontend/src/app/components/transaction/transaction-raw.component.html b/frontend/src/app/components/transaction/transaction-raw.component.html index 15293e2dd..461d77bc4 100644 --- a/frontend/src/app/components/transaction/transaction-raw.component.html +++ b/frontend/src/app/components/transaction/transaction-raw.component.html @@ -43,7 +43,11 @@ @if (!hasPrevouts) {
- This transaction is missing prevouts data. {{ errorPrevouts ? 'Reason: ' + errorPrevouts : '' }} + @if (offlineMode) { + Prevouts are not loaded, some fields like fee rate cannot be displayed. + } @else { + Could not load prevouts. {{ errorPrevouts ? 'Reason: ' + errorPrevouts : '' }} + }
}