diff --git a/frontend/src/app/shared/components/datepicker/wp-multi-date-form/wp-multi-date-form.component.ts b/frontend/src/app/shared/components/datepicker/wp-multi-date-form/wp-multi-date-form.component.ts
index d1dd3a218f95..357015d8c6d8 100644
--- a/frontend/src/app/shared/components/datepicker/wp-multi-date-form/wp-multi-date-form.component.ts
+++ b/frontend/src/app/shared/components/datepicker/wp-multi-date-form/wp-multi-date-form.component.ts
@@ -82,6 +82,7 @@ import { WorkPackageChangeset } from 'core-app/features/work-packages/components
import { UntilDestroyedMixin } from 'core-app/shared/helpers/angular/until-destroyed.mixin';
import isNewResource from 'core-app/features/hal/helpers/is-new-resource';
import { DateModalSchedulingService } from '../services/date-modal-scheduling.service';
+import { PathHelperService } from 'core-app/core/path-helper/path-helper.service';
export type DateKeys = 'start'|'end';
export type DateFields = DateKeys|'duration';
@@ -132,6 +133,8 @@ export class OpWpMultiDateFormComponent extends UntilDestroyedMixin implements A
@Output() save = new EventEmitter();
+ public turboFrameSrc:string;
+
text = {
save: this.I18n.t('js.button_save'),
cancel: this.I18n.t('js.button_cancel'),
@@ -243,6 +246,7 @@ export class OpWpMultiDateFormComponent extends UntilDestroyedMixin implements A
readonly deviceService:DeviceService,
readonly weekdayService:WeekdayService,
readonly focusHelper:FocusHelperService,
+ readonly pathHelper:PathHelperService,
) {
super();
@@ -289,6 +293,8 @@ export class OpWpMultiDateFormComponent extends UntilDestroyedMixin implements A
this.dates.start = this.changeset.value('startDate');
this.dates.end = this.changeset.value('dueDate');
this.setCurrentActivatedField(this.initialActivatedField);
+
+ this.turboFrameSrc = this.pathHelper.workPackageDatepickerDialogContentPath(this.changeset.id);
}
ngAfterViewInit():void {