Fix double http query when switching timespan for the first time

This commit is contained in:
nymkappa
2022-06-23 15:30:42 +02:00
parent 4a9089633c
commit 2bc11b4a75
7 changed files with 7 additions and 7 deletions

View File

@@ -64,7 +64,7 @@ export class BlockRewardsGraphComponent implements OnInit {
.fragment
.subscribe((fragment) => {
if (['24h', '3d', '1w', '1m', '3m', '6m', '1y', '2y', '3y', 'all'].indexOf(fragment) > -1) {
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: true });
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false });
}
});