-- {{ "NONE" | translate }} --
@for (status of statusList; track status) {
{{ status.label | translate }}
}
@if(capaReviewForm.get('status')?.touched &&
capaReviewForm.get('status')?.errors){
@if(capaReviewForm.get('status')?.hasError('required')){
{{'STATUS_IS_REQUIRED' | translate}}
}
}
@if(data.isViewOnly){
}
@if(capaReviewForm.get('reviewComment')?.touched &&
capaReviewForm.get('reviewComment')?.errors){
@if(capaReviewForm.get('reviewComment')?.hasError('required')){
{{'REVIEW_COMMENT_IS_REQUIRED' | translate}}
}
}