diff --git a/frontend/app/components/work-packages/wp-single-view/wp-single-view.directive.ts b/frontend/app/components/work-packages/wp-single-view/wp-single-view.directive.ts index f62ede7859..3b9abc0052 100644 --- a/frontend/app/components/work-packages/wp-single-view/wp-single-view.directive.ts +++ b/frontend/app/components/work-packages/wp-single-view/wp-single-view.directive.ts @@ -62,7 +62,11 @@ export class WorkPackageSingleViewController { this.workPackage = wp; this.singleViewWp = new SingleViewWorkPackage(wp); - this.workPackage.type.$load(); + this.workPackage.type.$load().then(() => { + if (this.workPackage.type.isMilestone) { + this.text.noStartDate = '-'; + } + }); this.workPackage.schema.$load().then(schema => { this.setFocus();