From 65dce1f9dd2dccd5f96fcc81c3cb156802a8c5f3 Mon Sep 17 00:00:00 2001 From: natsoni Date: Thu, 20 Nov 2025 13:45:22 +0100 Subject: [PATCH 1/3] Fix bowtie tooltip output on electrum backend --- .../tx-bowtie-graph-tooltip.component.html | 2 +- .../tx-bowtie-graph-tooltip.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html index 3dfb2059d..b75fe9319 100644 --- a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html +++ b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -56,7 +56,7 @@ - + diff --git a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.ts b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.ts index ad2d7a299..cf3daa61c 100644 --- a/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.ts +++ b/frontend/src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.ts @@ -54,7 +54,7 @@ export class TxBowtieGraphTooltipComponent implements OnChanges { constructor( private priceService: PriceService, - private stateService: StateService, + public stateService: StateService, private apiService: ApiService, ) {} From 0315d3dc0622fad7be5e5e7ff9255f92f7780fff Mon Sep 17 00:00:00 2001 From: Mononaut Date: Sat, 22 Nov 2025 08:07:13 +0000 Subject: [PATCH 2/3] change handle --- frontend/custom-meta-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/custom-meta-config.json b/frontend/custom-meta-config.json index 6fa46192a..358a91da6 100644 --- a/frontend/custom-meta-config.json +++ b/frontend/custom-meta-config.json @@ -25,7 +25,7 @@ "component": "twitter", "mobileOrder": 5, "props": { - "handle": "Metaplanet_JP" + "handle": "Metaplanet" } }, { From bf7f780f142d93fe7e0f0c1424fd85d96f3c1ec6 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Thu, 27 Nov 2025 09:23:15 +0000 Subject: [PATCH 3/3] add missing trackBy fn to CPFP table --- .../src/app/components/transaction/cpfp-info.component.html | 4 ++-- .../src/app/components/transaction/cpfp-info.component.ts | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/transaction/cpfp-info.component.html b/frontend/src/app/components/transaction/cpfp-info.component.html index 55945c388..c287a6165 100644 --- a/frontend/src/app/components/transaction/cpfp-info.component.html +++ b/frontend/src/app/components/transaction/cpfp-info.component.html @@ -16,7 +16,7 @@ - + Descendant @@ -40,7 +40,7 @@ - + Ancestor diff --git a/frontend/src/app/components/transaction/cpfp-info.component.ts b/frontend/src/app/components/transaction/cpfp-info.component.ts index 8407e0b22..09842cec6 100644 --- a/frontend/src/app/components/transaction/cpfp-info.component.ts +++ b/frontend/src/app/components/transaction/cpfp-info.component.ts @@ -20,4 +20,8 @@ export class CpfpInfoComponent implements OnInit { roundToOneDecimal(cpfpTx: any): number { return +(cpfpTx.fee / (cpfpTx.weight / 4)).toFixed(1); } + + trackByIndex(index: number): number { + return index; + } }