mirror of
https://github.com/mempool/mempool.git
synced 2025-02-21 22:11:51 +01:00
Merge pull request #2409 from mempool/simon/channel-closing-type-header
Add closing type badge to channel header
This commit is contained in:
commit
5878def72c
2 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
<span class="badge rounded-pill badge-secondary" *ngIf="channel.status === 0">Inactive</span>
|
||||
<span class="badge rounded-pill badge-success" *ngIf="channel.status === 1">Active</span>
|
||||
<span class="badge rounded-pill badge-danger" *ngIf="channel.status === 2">Closed</span>
|
||||
<app-closing-type *ngIf="channel.closing_reason" [type]="channel.closing_reason"></app-closing-type>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
|
|
@ -30,6 +30,10 @@
|
|||
font-size: 20px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
app-fiat {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
|
|
Loading…
Add table
Reference in a new issue