-
diff --git a/src/app/shared/publication/new-action/new-action.page.ts b/src/app/shared/publication/new-action/new-action.page.ts
index 32b81ec7f..d20a9c679 100644
--- a/src/app/shared/publication/new-action/new-action.page.ts
+++ b/src/app/shared/publication/new-action/new-action.page.ts
@@ -85,16 +85,17 @@ export class NewActionPage implements OnInit {
injectValidation() {
-
-
this.Form = new FormGroup({
Subject: new FormControl(this.folder.Description, [
Validators.required,
- // Validators.minLength(4)
+ //Validators.minLength(1)
]),
Date: new FormControl(this.dateValid, [
Validators.required
]),
+ Detail: new FormControl(this.folder.Detail, [
+ Validators.required
+ ])
})
}