mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 21:03:33 +02:00
Minor adjustments
Minor adjustments
This commit is contained in:
parent
6ffb848596
commit
b2b38ad23b
1 changed files with 3 additions and 3 deletions
|
@ -933,7 +933,7 @@ function loaded() {
|
||||||
entityIds: selection,
|
entityIds: selection,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateEntityData(entityData) {
|
function updateEntityData(entityData) {
|
||||||
entities = [];
|
entities = [];
|
||||||
entitiesByID = {};
|
entitiesByID = {};
|
||||||
|
@ -943,7 +943,7 @@ function loaded() {
|
||||||
entityData.forEach(function(entity) {
|
entityData.forEach(function(entity) {
|
||||||
let type = entity.type;
|
let type = entity.type;
|
||||||
let filename = getFilename(entity.url);
|
let filename = getFilename(entity.url);
|
||||||
|
|
||||||
let entityData = {
|
let entityData = {
|
||||||
id: entity.id,
|
id: entity.id,
|
||||||
name: entity.name,
|
name: entity.name,
|
||||||
|
@ -991,7 +991,7 @@ function loaded() {
|
||||||
e.type.toLowerCase().indexOf(searchTerm) > -1 ||
|
e.type.toLowerCase().indexOf(searchTerm) > -1 ||
|
||||||
e.fullUrl.toLowerCase().indexOf(searchTerm) > -1 ||
|
e.fullUrl.toLowerCase().indexOf(searchTerm) > -1 ||
|
||||||
(e.urlWithPath.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);
|
e.id.toLowerCase().indexOf(searchTerm) > -1);
|
||||||
return typeFilter && searchFilter;
|
return typeFilter && searchFilter;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue