dataset wizard fix
This commit is contained in:
parent
80a569b667
commit
1ef0782989
|
@ -397,7 +397,7 @@ export class DatasetWizardComponent extends BaseComponent implements OnInit, IBr
|
||||||
public isSemiFormValid(formGroup: FormGroup): boolean {
|
public isSemiFormValid(formGroup: FormGroup): boolean {
|
||||||
var isValid: boolean = true;
|
var isValid: boolean = true;
|
||||||
Object.keys(formGroup.controls).forEach(controlName => {
|
Object.keys(formGroup.controls).forEach(controlName => {
|
||||||
if (controlName != 'datasetProfileDefinition' && !(formGroup.get(controlName).valid)) {
|
if (controlName != 'datasetProfileDefinition' && !formGroup.get(controlName).disabled && !(formGroup.get(controlName).valid)) {
|
||||||
isValid = false;
|
isValid = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue