Fix missing prevouts message

This commit is contained in:
natsoni 2024-11-28 14:32:20 +01:00
parent 722eaa3e96
commit 74ecd1aaac
No known key found for this signature in database
GPG key ID: C65917583181743B

View file

@ -43,7 +43,11 @@
@if (!hasPrevouts) {
<div class="alert alert-mempool">
<span><strong>This transaction is missing prevouts data</strong>. {{ errorPrevouts ? 'Reason: ' + errorPrevouts : '' }}</span>
@if (offlineMode) {
<span><strong>Prevouts are not loaded, some fields like fee rate cannot be displayed.</strong></span>
} @else {
<span><strong>Could not load prevouts</strong>. {{ errorPrevouts ? 'Reason: ' + errorPrevouts : '' }}</span>
}
</div>
}