diff options
Diffstat (limited to 'viewer/src/components')
-rw-r--r-- | viewer/src/components/LdProposition.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/components/LdProposition.vue b/viewer/src/components/LdProposition.vue index 34ddf51..abca8cd 100644 --- a/viewer/src/components/LdProposition.vue +++ b/viewer/src/components/LdProposition.vue | |||
@@ -71,7 +71,7 @@ export default class LdProposition extends Vue { | |||
71 | 71 | ||
72 | getInitialTagDisplayLimit() { | 72 | getInitialTagDisplayLimit() { |
73 | const limit = this.$galleryStore.config?.initialTagDisplayLimit ?? 10; | 73 | const limit = this.$galleryStore.config?.initialTagDisplayLimit ?? 10; |
74 | return limit > 0 ? limit : 1000; | 74 | return limit >= 0 ? limit : 1000; |
75 | } | 75 | } |
76 | 76 | ||
77 | @Watch("$route") | 77 | @Watch("$route") |