From b2b38ad23be55bf2dc1f47087a7914d63433b3dd Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Tue, 16 Feb 2021 21:49:26 -0500 Subject: [PATCH] Minor adjustments Minor adjustments --- scripts/system/create/entityList/html/js/entityList.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/system/create/entityList/html/js/entityList.js b/scripts/system/create/entityList/html/js/entityList.js index cd33bdd29c..d21e65d47d 100644 --- a/scripts/system/create/entityList/html/js/entityList.js +++ b/scripts/system/create/entityList/html/js/entityList.js @@ -933,7 +933,7 @@ function loaded() { entityIds: selection, })); } - + function updateEntityData(entityData) { entities = []; entitiesByID = {}; @@ -943,7 +943,7 @@ function loaded() { entityData.forEach(function(entity) { let type = entity.type; let filename = getFilename(entity.url); - + let entityData = { id: entity.id, name: entity.name, @@ -991,7 +991,7 @@ function loaded() { e.type.toLowerCase().indexOf(searchTerm) > -1 || e.fullUrl.toLowerCase().indexOf(searchTerm) > -1 || (e.urlWithPath.toLowerCase().indexOf(searchTerm) > -1 && - columnsByID["urlWithPath"].elTh.style.visibility === "visible")|| + columnsByID["urlWithPath"].elTh.style.visibility === "visible") || e.id.toLowerCase().indexOf(searchTerm) > -1); return typeFilter && searchFilter; });