Skip to content

Commit

Permalink
Ignoring task validation when there are no tasks in template builder
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaro committed Dec 17, 2023
1 parent 28fef1f commit 7d73b22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class TaskTemplateEditorComponent implements OnInit, OnDestroy {
}

public isFormValid(){
return this.form.valid;
return this.form == undefined || this.form.valid;
}

public fetchData(){
Expand Down

0 comments on commit 7d73b22

Please sign in to comment.