2
0

added service to provide canvas all over

This commit is contained in:
2018-05-23 14:18:34 +02:00
parent 1231b2de9c
commit 040782f18a
7 changed files with 70 additions and 17 deletions

View File

@@ -13,5 +13,8 @@ export let ConfigForm: FormGroup = fb.group({
Validators.min(0),
Validators.max(360)
])),
nodes: fb.control('', Validators.min(1))
nodes: fb.control('', Validators.compose([
Validators.min(1),
Validators.max(10)
]))
});