remove total received from wallet page

This commit is contained in:
Mononaut 2025-08-10 21:25:33 +00:00
parent 8f23be333d
commit 5775ca2a74
No known key found for this signature in database
GPG key ID: A3F058E41374C04E
4 changed files with 3 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<div class="addresses-treemap-container">
<div *ngIf="addresses" style="height: 300px">
<div *ngIf="addresses" style="height: 240px">
<div *browserOnly echarts [initOpts]="chartInitOptions" [options]="chartOptions" (chartInit)="onChartInit($event)">
</div>
</div>

View file

@ -62,7 +62,7 @@ export class AddressesTreemap implements OnChanges {
},
series: <TreemapSeriesOption[]>[
{
height: 300,
height: 240,
left: 0,
right: 0,
bottom: 0,

View file

@ -44,10 +44,6 @@
<td i18n="address.confirmed-utxos">Confirmed UTXOs</td>
<td class="wrap-cell">{{ walletStats.utxos }}</td>
</tr>
<tr>
<td i18n="address.total-received">Total received</td>
<td class="wrap-cell"><app-amount [satoshis]="walletStats.totalReceived"></app-amount></td>
</tr>
</ng-container>
</tbody>
</table>

View file

@ -7,7 +7,7 @@
.treemap-col {
width: 45%;
height: 300px;
height: 240px;
}
.fiat {