We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5801860 commit ff863ffCopy full SHA for ff863ff
frontend/src/views/charts.vue
@@ -46,6 +46,9 @@ const chartLength = computed(() => {
46
});
47
48
const filteredCharts = computed(() => {
49
+ if (filter.value == "") {
50
+ return Object.keys(store.charts);
51
+ }
52
return Object.keys(store.charts).filter((apt) => {
53
return filter.value != "" && apt.toLowerCase().includes(filter.value.toLowerCase());
54
0 commit comments