From ce57040d6ff0190c9e1adbf8f01b7c709704085f Mon Sep 17 00:00:00 2001 From: hppeng-wynn <77039964+hppeng-wynn@users.noreply.github.com> Date: Fri, 19 Aug 2022 22:48:37 -0700 Subject: [PATCH] Fix crafter link... (#212) Co-authored-by: hppeng --- js/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/display.js b/js/display.js index d9b20c1..10d7e4f 100644 --- a/js/display.js +++ b/js/display.js @@ -269,7 +269,7 @@ function displayExpandedItem(item, parent_id){ if (item.get("custom")) { item_link = "../custom/#" + item.get("hash"); } else if (item.get("crafted")) { - a_item_link = "../crafter/#" + item.get("hash"); + item_link = "../crafter/#" + item.get("hash"); } else { item_link = "../item/#" + item.get("displayName"); }