fixed BUG in #123 item tags

This commit is contained in:
Carlos Jimenez 2018-02-26 16:49:44 +01:00
parent 84f9ac57f3
commit c0106b11d2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class ItemTags {
} }
addItemTag() { addItemTag() {
this.itemTags.push({value: null, itemFk: this.item.id, tagFk: null, showAddIcon: true}); this.itemTags.push({value: null, itemFk: this.itemId, tagFk: null, showAddIcon: true});
this._setIconAdd(); this._setIconAdd();
} }