Skip to content

Commit

Permalink
NN-336 Initial solution to increase performance of the filter system
Browse files Browse the repository at this point in the history
  • Loading branch information
TripZz committed Aug 14, 2023
1 parent a30ea4a commit 21af38b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/enrichment/EnrichmentTool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
},
shouldDisplayOption(entry) {
return this.filt_terms.includes(entry);
return this.filt_terms.has(entry);
},
visualize_layers(){
var com = this;
Expand Down Expand Up @@ -321,7 +321,7 @@
});
}
return filtered;
return new Set(filtered);
},
},
}
Expand Down

0 comments on commit 21af38b

Please sign in to comment.