We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5801860 commit 66a7f0dCopy full SHA for 66a7f0d
frontend/src/views/charts.vue
@@ -46,6 +46,9 @@ const chartLength = computed(() => {
46
});
47
48
const filteredCharts = computed(() => {
49
+ if (filter.value) {
50
+ return 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