diff options
author | Zero~Informatique | 2020-09-11 21:10:09 +0200 |
---|---|---|
committer | G.Fouet | 2020-09-11 21:53:18 +0200 |
commit | 1e5a1a51d21d78a4a717e9434932be9da20d3115 (patch) | |
tree | a2db1ab277df4fa633147598a6a5ce4a28d2ad61 /viewer/src/components/LdProposition.vue | |
parent | eb636568643e892491fd925f7a92fc3feba6a67e (diff) | |
download | ldgallery-1e5a1a51d21d78a4a717e9434932be9da20d3115.tar.gz |
viewer: PR #238 code review changes (2nd)
Diffstat (limited to 'viewer/src/components/LdProposition.vue')
-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") |