From c0106b11d2e10b474334ceac790b6defb1c49963 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Mon, 26 Feb 2018 16:49:44 +0100 Subject: [PATCH] fixed BUG in #123 item tags --- client/item/src/tags/item-tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/item/src/tags/item-tags.js b/client/item/src/tags/item-tags.js index bdbd8cd48f..6079c0a280 100644 --- a/client/item/src/tags/item-tags.js +++ b/client/item/src/tags/item-tags.js @@ -47,7 +47,7 @@ class ItemTags { } 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(); }