diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-25 03:40:36 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-25 03:40:36 +0200 |
commit | 044ef1a76cf2f53b0dd86c4a77fabd01a81e93ad (patch) | |
tree | 4f24f28289fae2b8e7bfa379fd8562837510deda /frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts | |
parent | aee2cd43578a255f5a0e346ac8955f663a673cca (diff) |
Ažurirane komponente form-model i hidden-layer.
Diffstat (limited to 'frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts')
-rw-r--r-- | frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts index fa9a1114..301476de 100644 --- a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts +++ b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts @@ -1,16 +1,18 @@ import { Component, OnInit } from '@angular/core'; import { FormControl, Validators } from '@angular/forms'; - +import Model from 'src/app/_data/Model'; @Component({ selector: 'app-hidden-layer', templateUrl: './hidden-layer.component.html', styleUrls: ['./hidden-layer.component.css'] }) export class HiddenLayerComponent implements OnInit { - + hiddenLayerNum:number=1; constructor() { } ngOnInit(): void { } - selectFormControl = new FormControl('', Validators.required); + selectActivationFormControl = new FormControl('', Validators.required); + selectRegularisationFormControl = new FormControl('', Validators.required); + selectRRateFormControl = new FormControl('', Validators.required); } |