mirror of
https://github.com/mempool/mempool.git
synced 2025-03-13 19:37:47 +01:00
Fix missing prevouts message
This commit is contained in:
parent
722eaa3e96
commit
74ecd1aaac
1 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue