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 a3edaf17cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}