suche geht jetzt

This commit is contained in:
danielvici123
2025-02-06 17:46:18 +01:00
parent bb2cfedb84
commit 9af5b34658

View File

@@ -67,6 +67,7 @@ for(let i =0; i < dinge.value.length; i++) {
function go_fs(){
console.log("These Filter applied: ", JSON.stringify(search_filter_status.value));
feed.value = [];
feed2.value = [];
dinge.value.forEach((dinge) => {
@@ -75,6 +76,10 @@ function go_fs(){
}
})
let i = 0;
if (usr_search == undefined) {
feed = feed2;
return;
} else {
feed2.value.forEach(() => {
switch (feed2.value[i].type) {
case "user":
@@ -101,6 +106,7 @@ function go_fs(){
}
i++;
})
}
console.log("Feed:", feed.value);