Merge pull request #819 from mempool/simon/lpeg-liquid-test

Check for data to possibly fix Liquid test
This commit is contained in:
wiz 2021-09-26 18:51:25 +09:00 committed by GitHub
commit e45ae1130b

View File

@ -30,6 +30,9 @@ export class LbtcPegsGraphComponent implements OnChanges {
) { }
ngOnChanges() {
if (!this.data) {
return;
}
this.pegsChartOptions = this.createChartOptions(this.data.series, this.data.labels);
}