Skip to content

Commit c52a903

Browse files
committed
pull in fix from #3663
1 parent 9bb9b22 commit c52a903

File tree

1 file changed

+1
-1
lines changed
  • tutor/src/screens/assignment-edit

1 file changed

+1
-1
lines changed

tutor/src/screens/assignment-edit/ux.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ export default class AssignmentUX {
482482
@computed get showPreWRMCloneHelp() {
483483
if (!(this.plan.isClone && this.plan.isHomework)) { return false; }
484484
const clonedFrom = this.course.pastTaskPlans.get(this.plan.cloned_from_id);
485-
return Boolean(clonedFrom && clonedFrom.duration.start.isBefore(WRM_START_DATE));
485+
return Boolean(clonedFrom && clonedFrom.interval.start.isBefore(WRM_START_DATE));
486486
}
487487

488488
@computed get canEditSettings() {

0 commit comments

Comments
 (0)