+
TXID |
@@ -21,7 +21,7 @@
Requested |
-
+
@@ -73,22 +73,47 @@
|
-
-
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
+ @if (!pending) {
+
+
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ } @else {
+
+
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ }
diff --git a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.ts b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.ts
index 46628bde9..9aa7fad46 100644
--- a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.ts
+++ b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.ts
@@ -32,6 +32,7 @@ export class AccelerationsListComponent implements OnInit, OnDestroy {
dir: 'rtl' | 'ltr' = 'ltr';
paramSubscription: Subscription;
pools: { [id: number]: SinglePoolStats } = {};
+ nonEmptyAccelerations: boolean = true;
constructor(
private servicesApiService: ServicesApiServices,
@@ -115,6 +116,7 @@ export class AccelerationsListComponent implements OnInit, OnDestroy {
for (const acc of accelerations) {
acc.boost = acc.boostCost != null ? acc.boostCost : acc.bidBoost;
}
+ this.nonEmptyAccelerations = accelerations.length > 0;
if (this.widget) {
return of(accelerations.slice(0, 6));
} else {