From 48cd604b14d43e9d53c4be72802e70d9d0b8d044 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 21 Dec 2020 00:30:31 -0500 Subject: [PATCH] finally fix no results message --- src/interaction/siWardrobe.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js index 6cccc2fa78b..46640b44817 100644 --- a/src/interaction/siWardrobe.js +++ b/src/interaction/siWardrobe.js @@ -185,8 +185,9 @@ App.UI.SlaveInteract.wardrobe = function(slave) { // Sort array = array.sort((a, b) => (a.text > b.text) ? 1 : -1); - if (array.length > 0) { - App.UI.DOM.appendNewElement("div", el, generateRows(array, "clothes", true), "choices"); + const list = generateRows(array, "clothes", true); + if ($(list)[0].children.length > 0) { + App.UI.DOM.appendNewElement("div", el, list, "choices"); } else { App.UI.DOM.appendNewElement("div", el, "No available clothing meets your criteria", ["note", "choices"]); } @@ -214,8 +215,9 @@ App.UI.SlaveInteract.wardrobe = function(slave) { // Sort array = array.sort((a, b) => (a.text > b.text) ? 1 : -1); - if (array.length > 0) { - App.UI.DOM.appendNewElement("div", el, generateRows(array, "collar", true), "choices"); + const list = generateRows(array, "collar", true); + if ($(list)[0].children.length > 0) { + App.UI.DOM.appendNewElement("div", el, list, "choices"); } else { App.UI.DOM.appendNewElement("div", el, "No available collar meets your criteria", ["note", "choices"]); } -- GitLab