Merged in bugfix/PMCORE-2579 (pull request #7646)

PMCORE-2579 Extenden Attributes with repeated attribute can be created

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-12-18 23:17:29 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -222,7 +222,15 @@
this.statusAttributeIdMessage = this.$root.translation("ID_INVALID_DATA");
return;
}
this.saveForm();
let promise = this.validateName();
promise.then(response => {
response;
let promise2 = this.validateAttributeId();
promise2.then(response2 => {
response2;
this.saveForm();
});
});
},
validateName() {
this.statusValidation = false;