Fix crafter link... (#212)

Co-authored-by: hppeng <hppeng>
This commit is contained in:
hppeng-wynn 2022-08-19 22:48:37 -07:00 committed by GitHub
parent 418f25d85b
commit ce57040d6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -269,7 +269,7 @@ function displayExpandedItem(item, parent_id){
if (item.get("custom")) { if (item.get("custom")) {
item_link = "../custom/#" + item.get("hash"); item_link = "../custom/#" + item.get("hash");
} else if (item.get("crafted")) { } else if (item.get("crafted")) {
a_item_link = "../crafter/#" + item.get("hash"); item_link = "../crafter/#" + item.get("hash");
} else { } else {
item_link = "../item/#" + item.get("displayName"); item_link = "../item/#" + item.get("displayName");
} }