diff --git a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html
index 0343d74c4..b42689ef2 100644
--- a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html
+++ b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html
@@ -58,11 +58,23 @@
{{ peg.amount > 0 ? '+' : '-' }}
-
+
+
+
+ BTC Redemption in progress...
+
+
+ |
+
+
+
+
+
+
|
{{ peg.blocktime * 1000 | date:'yyyy-MM-dd HH:mm' }}
@@ -96,6 +108,9 @@
|
|
+
+
+ |
|
@@ -120,6 +135,6 @@
-
- BTC Redeem in progress...
+
+ -
\ No newline at end of file
diff --git a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss
index eccc42957..94a3de637 100644
--- a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss
+++ b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss
@@ -67,6 +67,16 @@ tr, td, th {
}
}
+.address {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 160px;
+ @media (max-width: 527px) {
+ display: none;
+ }
+}
+
.timestamp {
width: 18%;
@media (max-width: 650px) {
diff --git a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts
index 2ff103301..01a41dca7 100644
--- a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts
+++ b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts
@@ -94,7 +94,6 @@ export class RecentPegsListComponent implements OnInit {
filter(auditUpdated => auditUpdated === true),
throttleTime(40000),
switchMap(_ => this.apiService.federationUtxos$()),
- tap(_ => this.isLoading = false),
share()
);
@@ -134,6 +133,7 @@ export class RecentPegsListComponent implements OnInit {
return b.blocktime - a.blocktime;
});
}),
+ tap(_ => this.isLoading = false),
share()
);
}