From 4fd69061be9dcd33f38168ff98b414fbae815749 Mon Sep 17 00:00:00 2001 From: Kasen IO Date: Sat, 4 Apr 2020 06:46:38 -0400 Subject: [PATCH] Check itemTypeBug. --- scripts/system/inventory/inventory.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/inventory/inventory.html b/scripts/system/inventory/inventory.html index 28c227dafc..34bbfeb72f 100644 --- a/scripts/system/inventory/inventory.html +++ b/scripts/system/inventory/inventory.html @@ -704,7 +704,7 @@ new Vue({ editItem: function(url) { for (i = 0; i < this.items.length; i++) { if (this.items[i].url == url) { - this.items[i].type = this.checkFileType(this.editDialog.data.type); + this.items[i].type = this.checkItemType(this.editDialog.data.type); this.items[i].name = this.editDialog.data.name; this.items[i].url = this.editDialog.data.url; }