You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.feedbackMessageService.addFeedbackMessage(newMessage("Creating a dependency between a parent task and one of its children is not possible.", MessageLevel.ERROR));
353
+
}
354
+
if (isParentCycle) {
355
+
this.feedbackMessageService.addFeedbackMessage(newMessage("Creating a dependency when the source task already depends on one of the target task's parent tasks is not possible", MessageLevel.ERROR));
356
+
}
324
357
if (isCycle) {
325
358
this.feedbackMessageService.addFeedbackMessage(newMessage("Creating a cyclic dependency is not possible.", MessageLevel.ERROR));
359
+
}
360
+
361
+
if (isCycle || isParentCycle || isParentChildDependency) {
0 commit comments