Explorar o código

Testing repeated field validation

Richard Knight %!s(int64=4) %!d(string=hai) anos
pai
achega
8b7651767b
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      src/app/_mock/testfields.v15.ts

+ 4 - 1
src/app/_mock/testfields.v15.ts

@@ -2,6 +2,8 @@
 // TESTS: Repeating Single Fields (i.e. fields not part of a repeating container group)
 // ---------------------------------------------------------------------------------------------------------------------
 
+import { Validators } from '@angular/forms';
+
 const model = {};
 
 const meta = {
@@ -12,7 +14,8 @@ const meta = {
 		maxRepeat: 5,
 		initialRepeat: 3,
 		showAddControl: true,
-		showDeleteControl: true
+		showDeleteControl: true,
+		validators: Validators.email
 	}
 };