diff --git a/frontend/src/app/lightning/channel/channel-box/channel-box.component.html b/frontend/src/app/lightning/channel/channel-box/channel-box.component.html
index 30d1a3585..8b486eff5 100644
--- a/frontend/src/app/lightning/channel/channel-box/channel-box.component.html
+++ b/frontend/src/app/lightning/channel/channel-box/channel-box.component.html
@@ -19,31 +19,31 @@
Fee rate |
- {{ channel.fee_rate }} ppm ({{ channel.fee_rate / 10000 | number }}%)
+ {{ channel.fee_rate ?? '-' }} ppm ({{ channel.fee_rate / 10000 | number }}%)
|
Base fee |
-
+
|
Min HTLC |
-
+
|
Max HTLC |
-
+
|
Timelock delta |
-
+
|
diff --git a/frontend/src/app/shared/components/sats/sats.component.html b/frontend/src/app/shared/components/sats/sats.component.html
index a648cdfcb..1b4ab9143 100644
--- a/frontend/src/app/shared/components/sats/sats.component.html
+++ b/frontend/src/app/shared/components/sats/sats.component.html
@@ -1,5 +1,8 @@
-{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ satoshis | number : digitsInfo }}
-L-
-tL-
-t-
-s-sats
+{{ valueOverride }}
+{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ satoshis | number : digitsInfo }}
+
+ L-
+ tL-
+ t-
+ s-sats
+
\ No newline at end of file
diff --git a/frontend/src/app/shared/components/sats/sats.component.ts b/frontend/src/app/shared/components/sats/sats.component.ts
index d9801d249..39be66ecd 100644
--- a/frontend/src/app/shared/components/sats/sats.component.ts
+++ b/frontend/src/app/shared/components/sats/sats.component.ts
@@ -11,6 +11,7 @@ export class SatsComponent implements OnInit {
@Input() satoshis: number;
@Input() digitsInfo = '1.0-0';
@Input() addPlus = false;
+ @Input() valueOverride: string | undefined = undefined;
network = '';
stateSubscription: Subscription;