in frontend/src/app/modules/deployment-history/components/deployment-details/deployment-details.component.ts [53:65]
private loadData(): void {
if (!this.waveId || !this.deploymentId) {
this.router.navigateByUrl(`/deploymenthistory`);
return;
}
this.deploymentHistoryService.getDeploymentDetails(this.waveId, this.deploymentId).subscribe((response) => {
if (!response.data || !response.data[0]) return;
this.initTableData(response.data);
this.deploymentStartDate = formatDate(response.data[0].bms[0].started_at);
});
}