diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index dbdc4726..ea8fb23c 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -72,11 +72,11 @@ export const getPendingChannels = (req, res, next) => { if (body.pending_open_channels && body.pending_open_channels.length > 0) { (_a = body.pending_open_channels) === null || _a === void 0 ? void 0 : _a.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } - if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - (_b = body.pending_closing_channels) === null || _b === void 0 ? void 0 : _b.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); - } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - (_c = body.pending_force_closing_channels) === null || _c === void 0 ? void 0 : _c.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + (_b = body.pending_force_closing_channels) === null || _b === void 0 ? void 0 : _b.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + } + if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { + (_c = body.pending_closing_channels) === null || _c === void 0 ? void 0 : _c.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { (_d = body.waiting_close_channels) === null || _d === void 0 ? void 0 : _d.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index 3963d63c..c42f2bfd 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -71,12 +71,12 @@ export const getPendingChannels = (req, res, next) => { if (body.pending_open_channels && body.pending_open_channels.length > 0) { body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } - if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); - } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } + if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { + body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index d16abc03..ab72a578 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -67,4 +67,4 @@ export const routes: Routes = [ ]; // Export const routing: ModuleWithProviders = RouterModule.forRoot(routes, { enableTracing: true }); -export const routing: ModuleWithProviders = RouterModule.forRoot(routes); +export const routing: ModuleWithProviders = RouterModule.forRoot(routes, { scrollPositionRestoration: 'enabled' }); diff --git a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss index b542b955..2b50b930 100644 --- a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss @@ -1,6 +1,7 @@ div.bordered-box.table-actions-select.btn-action { min-width: 13rem; width: 13rem; + min-height: 3.6rem; } button.mat-stroked-button.btn-action-copy { diff --git a/src/app/cln/graph/query-routes/query-routes.component.html b/src/app/cln/graph/query-routes/query-routes.component.html index 0d8d1696..474edf88 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.html +++ b/src/app/cln/graph/query-routes/query-routes.component.html @@ -52,13 +52,11 @@ Delay - {{hop?.delay | number}} - + {{hop?.delay | number}} Amount (Sats) - {{hop?.msatoshi/1000 | number}} - + {{hop?.msatoshi/1000 | number}} diff --git a/src/app/cln/home/home.component.html b/src/app/cln/home/home.component.html index 455ebee2..f050f45c 100644 --- a/src/app/cln/home/home.component.html +++ b/src/app/cln/home/home.component.html @@ -100,9 +100,9 @@ - + - +

Error! Unable to find information!

diff --git a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html index 387b8ba5..d43a321e 100644 --- a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@
- {{peerFormLabel}} + {{peerFormLabel}} Address is required. diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html index bc6bb819..9a0eb833 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html @@ -108,7 +108,7 @@ View Info Refresh - + diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html index 129059a9..ea658cff 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html @@ -66,7 +66,7 @@ Pay Again Delete Bookmark - + diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.html b/src/app/cln/transactions/offers/offers-table/offers-table.component.html index 1b559ac9..9e23916a 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.html +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.html @@ -69,7 +69,7 @@ Disable Offer Export QR code - + diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html index d7e02021..e3550690 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html @@ -39,7 +39,7 @@ -
Actions
+
Actions
diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss index 3f11121e..203f71c1 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss @@ -1,10 +1,11 @@ div.bordered-box.table-actions-select.btn-action { - min-width: 13rem; - width: 13rem; - } + min-width: 13rem; + width: 13rem; + min-height: 3.6rem; +} - button.mat-stroked-button.btn-action-copy { - min-width: 13rem; - width: 13rem; - } +button.mat-stroked-button.btn-action-copy { + min-width: 13rem; + width: 13rem; +} \ No newline at end of file diff --git a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html index 8e70784f..92dff39d 100644 --- a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@ - {{peerFormLabel}} + {{peerFormLabel}} Address is required. diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.html b/src/app/eclair/transactions/invoices/lightning-invoices.component.html index b334dc02..8e3ad122 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.html +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.html @@ -102,7 +102,7 @@ View Info Refresh - +
diff --git a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html index 2fba317b..84cfe291 100644 --- a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html +++ b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html @@ -47,7 +47,7 @@ -
Actions
+
Actions
diff --git a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss index b542b955..2b50b930 100644 --- a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss @@ -1,6 +1,7 @@ div.bordered-box.table-actions-select.btn-action { min-width: 13rem; width: 13rem; + min-height: 3.6rem; } button.mat-stroked-button.btn-action-copy { diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html index 80a69e47..af9ae90d 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html @@ -36,7 +36,7 @@ {{utxo.label}} - +
@@ -52,7 +52,7 @@ {{utxo?.address}} - + diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html index 9530cf6c..ed95e53e 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html @@ -25,7 +25,7 @@ {{inputFormLabel}} -
+
(Local Bal: {{selChannel?.local_balance}}, Remaining: {{selChannel?.local_balance - ((inputFormGroup.controls.rebalanceAmount.value) ? inputFormGroup.controls.rebalanceAmount.value : 0)}}) @@ -65,7 +65,7 @@ {{feeFormGroup.controls.selFeeLimitType.value ? feeFormGroup.controls.selFeeLimitType.value.placeholder : feeLimitTypes[0].placeholder}} is required. {{feeFormGroup.controls.selFeeLimitType.value ? feeFormGroup.controls.selFeeLimitType.value.placeholder : feeLimitTypes[0].placeholder}} must be a positive number. -
+
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index 1c2d0c92..416867c2 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -10,58 +10,70 @@ - Peer - {{channel.channel.remote_alias}} + + - Pubkey - {{channel.channel.remote_node_pub}} + + - Channel - {{channel.channel.channel_point}} + + - Initiator - {{channel.channel.initiator}} + + - Commitment Type - {{channel.channel.commitment_type}} + + - Confirmation Height - {{channel.confirmation_height | number}} + + - Commit Fee (Sats) - {{channel.commit_fee | number}} + + - Commit Weight - {{channel.commit_weight | number}} + + - Fee/KW - {{channel.channel.fee_per_kw | number}} + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + - Local Balance (Sats) - {{channel.channel.local_balance | number}} + + - Remote Balance (Sats) - {{channel.channel.remote_balance | number}} + + - + + - - + +
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel +
+ {{channel.channel.channel_point}} +
+
Initiator {{channel.channel.initiator | camelcaseWithReplace:'initiator_'}} Commitment Type {{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Confirmation Height {{channel.confirmation_height | number}} Commit Fee (Sats) {{channel.commit_fee | number}} Commit Weight {{channel.commit_weight | number}} Fee/KW{{channel.fee_per_kw | number}} Capacity (Sats){{channel.channel.capacity | number}} Local Balance (Sats){{channel.channel.local_balance | number}} Remote Balance (Sats){{channel.channel.remote_balance | number}}
Actions
- - +
@@ -69,7 +81,7 @@ Bump Fee
- +
@@ -79,10 +91,10 @@
-
+ @@ -92,64 +104,80 @@
- Closing Tx Id - {{channel.closing_txid}} + + - Peer - {{channel.channel.remote_alias}} + + - Pubkey - {{channel.channel.remote_node_pub}} + + - Channel - {{channel.channel.channel_point}} + + - Initiator - {{channel.channel.initiator}} + + - Commitment Type - {{channel.channel.commitment_type}} + + - Limbo Balance (Sats) - {{channel.limbo_balance | number}} + + - Maturity Height - {{channel.maturity_height | number}} + + - Blocks till Maturity - {{channel.blocks_til_maturity | number}} + + - Recovered Balance (Sats) - {{channel.recovered_balance | number}} + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + - Local Balance (Sats) - {{channel.channel.local_balance | number}} + + - Remote Balance (Sats) - {{channel.channel.remote_balance | number}} + + - -
Actions
-
- +
+ - - + +
Closing Tx Id +
+ {{channel.closing_txid}} +
+
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel +
+ {{channel.channel.channel_point}} +
+
Initiator {{channel.channel.initiator | camelcaseWithReplace:'initiator_'}} Commitment Type {{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Limbo Balance (Sats) {{channel.limbo_balance | number}} Maturity Height{{channel.maturity_height | number}} Blocks till Maturity{{channel.blocks_til_maturity | number}} Recovered Balance (Sats) {{channel.recovered_balance | number}} Capacity (Sats) {{channel.channel.capacity | number}} Local Balance (Sats){{channel.channel.local_balance | number}} Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
- + @@ -159,8 +187,8 @@
@@ -172,48 +200,64 @@
- Closing Tx Id - {{channel.closing_txid}} + + - Peer - {{channel.channel.remote_alias}} + + - Pubkey - {{channel.channel.remote_node_pub}} + + - Channel - {{channel.channel.channel_point}} + + - Initiator - {{channel.channel.initiator}} + + - Commitment Type - {{channel.channel.commitment_type}} + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + - Local Balance (Sats) - {{channel.channel.local_balance | number}} + + - Remote Balance (Sats) - {{channel.channel.remote_balance | number}} + + - + + - - + +
Closing Tx Id +
+ {{channel.closing_txid}} +
+
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel +
+ {{channel.channel.channel_point}} +
+
Initiator {{channel.channel.initiator | camelcaseWithReplace:'initiator_'}} Commitment Type {{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Capacity (Sats) {{channel.channel.capacity | number}} Local Balance (Sats){{channel.channel.local_balance | number}} Remote Balance (Sats){{channel.channel.remote_balance | number}}
Actions
- - +
- + @@ -223,8 +267,8 @@
@@ -236,48 +280,60 @@
- Peer - {{channel.channel.remote_alias}} + + - Pubkey - {{channel.channel.remote_node_pub}} + + - Channel - {{channel.channel.channel_point}} + + - Initiator - {{channel.channel.initiator}} + + - Commitment Type - {{channel.channel.commitment_type}} + + - Limbo Balance (Sats) - {{channel.limbo_balance | number}} + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + - Local Balance (Sats) - {{channel.channel.local_balance | number}} + + - Remote Balance (Sats) - {{channel.channel.remote_balance | number}} + + - -
Actions
-
- +
+ - - + +
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel +
+ {{channel.channel.channel_point}} +
+
Initiator {{channel.channel.initiator | camelcaseWithReplace:'initiator_'}} Commitment Type {{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Limbo Balance (Sats) {{channel.limbo_balance | number}} Capacity (Sats) {{channel.channel.capacity | number}} Local Balance (Sats){{channel.channel.local_balance | number}} Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
- + @@ -287,8 +343,8 @@
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss index 77dc8364..71c5c601 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss @@ -1,9 +1,9 @@ -.mat-column-channel_point, .mat-column-remote_alias, .mat-column-remote_node_pub, -.mat-column-commitment_type, .mat-column-closing_txid { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; +.mat-column-channel_point, .mat-column-remote_alias, .mat-column-remote_node_pub, .mat-column-closing_txid { + flex: 0 0 15%; + width: 15%; + & .ellipsis-parent { + display: flex; + } } tr.mat-footer-row td.mat-footer-cell { diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index 1b2a7abe..10281d75 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -5,7 +5,7 @@ import { Store } from '@ngrx/store'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { Channel, GetInfo, PendingChannels, PendingOpenChannel } from '../../../../../shared/models/lndModels'; +import { Channel, GetInfo, PendingChannels, PendingClosingChannel, PendingForceClosingChannel, PendingOpenChannel, WaitingCloseChannel } from '../../../../../shared/models/lndModels'; import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, LND_DEFAULT_PAGE_SETTINGS, PAGE_SIZE, ScreenSizeEnum, SortOrderEnum } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../../../shared/models/RTLconfig'; @@ -37,16 +37,16 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe public pendingChannels: PendingChannels = {}; public displayedOpenColumns: any[] = []; public pendingOpenChannelsLength = 0; - public pendingOpenChannels: any; + public pendingOpenChannels: any = new MatTableDataSource([]); public displayedForceClosingColumns: any[] = []; public pendingForceClosingChannelsLength = 0; - public pendingForceClosingChannels: any; + public pendingForceClosingChannels: any = new MatTableDataSource([]); public displayedClosingColumns: any[] = []; public pendingClosingChannelsLength = 0; - public pendingClosingChannels: any; + public pendingClosingChannels: any = new MatTableDataSource([]); public displayedWaitClosingColumns: any[] = []; public pendingWaitClosingChannelsLength = 0; - public pendingWaitClosingChannels: any; + public pendingWaitClosingChannels: any = new MatTableDataSource([]); public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; diff --git a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html index 4bc8d611..054647a7 100644 --- a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@ - {{peerFormLabel}} + {{peerFormLabel}} Address is required. diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.html b/src/app/lnd/routing/routing-peers/routing-peers.component.html index be07ed2b..8165fff1 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.html +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.html @@ -30,7 +30,7 @@
-
Actions
+
Actions
diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.html b/src/app/shared/components/data-modal/alert-message/alert-message.component.html index 22f97e60..9c2f6c73 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.html +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.html @@ -68,7 +68,7 @@   - + diff --git a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html index db432acf..09c02904 100644 --- a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html +++ b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html @@ -37,7 +37,7 @@   - + @@ -45,7 +45,7 @@

{{data.titleMessage}}

- + {{getInput.placeholder}} is required. {{getInput.hintFunction ? getInput.hintFunction(getInput.inputValue) : getInput.hintText}} diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html index 3d367cb0..4a0644f5 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html @@ -31,7 +31,7 @@ You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator.
-
+
@@ -47,7 +47,7 @@ {{tokenFormLabel}}
-
+
Token is required. diff --git a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html index 67c290d8..a32be10a 100755 --- a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html @@ -16,7 +16,7 @@
-
+
Range: {{serviceInfo?.limits?.minimal | number}}-{{serviceInfo?.limits?.maximal | number}} diff --git a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html index caab2d3d..da7110c6 100755 --- a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html +++ b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html @@ -22,7 +22,7 @@
-
+
Range: {{minQuote.amount | number}}-{{maxQuote.amount | number}} @@ -42,7 +42,7 @@ Percentage must be a positive number.
-
+
Fast info_outline
diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.html b/src/app/shared/components/node-config/page-settings/page-settings.component.html index 1a594fe6..fbc89c4d 100644 --- a/src/app/shared/components/node-config/page-settings/page-settings.component.html +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.html @@ -1,11 +1,11 @@ -
+