aboutsummaryrefslogtreecommitdiff
path: root/src/components/SettingsModal.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2023-01-14 16:10:31 +1100
committerTerry Truong <terry06890@gmail.com>2023-01-14 16:10:31 +1100
commit96805eeb9edbbdde2277d155090c955cfa664506 (patch)
treeb06e80281dca99e8cd2c8af2d7f3447a6db699fb /src/components/SettingsModal.vue
parent3704ad2b88263705ee8352505845c38e0e5aa71f (diff)
Allow showing events without images
Add setting for showing such events Fix searches not always avoiding filtered categories
Diffstat (limited to 'src/components/SettingsModal.vue')
-rw-r--r--src/components/SettingsModal.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/SettingsModal.vue b/src/components/SettingsModal.vue
index 21ac7b8..d9caa34 100644
--- a/src/components/SettingsModal.vue
+++ b/src/components/SettingsModal.vue
@@ -27,6 +27,10 @@
<div class="pb-2" :class="borderBClasses">
<h2 class="font-bold md:text-xl text-center pt-1 md:pt-2 md:pb-1">Display</h2>
<div class="px-2">
+ <label> <input type="checkbox" v-model="store.reqImgs"
+ @change="onSettingChg('reqImgs')"/> Only show events with images </label>
+ </div>
+ <div class="px-2">
<label> <input type="checkbox" v-model="store.showEventCounts"
@change="onSettingChg('showEventCounts')"/> Show event count indicators </label>
</div>