in ngo-ui/src/app/ui/components/blockchain-progress/blockchain-progress.component.ts [277:291]
private initView(): void {
if (!this._viewInitialized) {
return;
}
if (this._blockElements && this._blockElements.length) {
for (let i = 0; i < this._blockElements.length; i++) {
if (this._blockElements[i].selected) {
this.selectedIndex = i;
break;
}
}
this.initBlockChain(this._blockElements);
}
this.detectChange.detectChanges();
}