diff --git a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
index 0c5981be6..9edddff4c 100644
--- a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
+++ b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
@@ -10,6 +10,7 @@
Output |
Address |
Amount |
+ Liquid Peg-in |
Date |
@@ -43,6 +44,11 @@
|
+
+
+
+
+ |
{{ utxo.blocktime * 1000 | date:'yyyy-MM-dd HH:mm' }}
diff --git a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.scss b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.scss
index 4208fd167..fe458841e 100644
--- a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.scss
+++ b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.scss
@@ -36,7 +36,7 @@ tr, td, th {
}
.txid {
- width: 35%;
+ width: 25%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -64,6 +64,14 @@ tr, td, th {
width: 25%;
}
+.pegin {
+ width: 25%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 160px;
+}
+
.timestamp {
width: 18%;
@media (max-width: 800px) {
|