Fix graph legend update while load bug and remove unnecessary query

This commit is contained in:
natsoni
2024-05-27 16:49:29 +02:00
parent cca798eeaa
commit 0654872627
2 changed files with 4 additions and 2 deletions

View File

@@ -396,6 +396,10 @@ export class BlockFeesSubsidyGraphComponent implements OnInit {
this.chartInstance = ec;
this.chartInstance.on('legendselectchanged', (params) => {
if (this.isLoading) {
return;
}
let mode: 'normal' | 'fiat' | 'percentage';
if (params.name.includes('USD')) {
mode = 'fiat';