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" } }, { 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; + } } 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, ) {}