corrected error message when tags are repeated

This commit is contained in:
Carlos Jimenez 2018-02-26 17:34:40 +01:00
parent 456e63700f
commit 4e5cbef155
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class ItemTags {
}
if (repeatedItemTags) {
return this.vnApp.showMessage(this.$translate.instant('The barcode must be unique'));
return this.vnApp.showMessage(this.$translate.instant('The tag must be unique'));
}
canSubmit = submitObj.update.length > 0 || submitObj.create.length > 0 || submitObj.delete.length > 0;