aboutsummaryrefslogtreecommitdiff
path: root/viewer/src
diff options
context:
space:
mode:
authorZero~Informatique2020-09-11 21:10:09 +0200
committerG.Fouet2020-09-11 21:53:18 +0200
commit1e5a1a51d21d78a4a717e9434932be9da20d3115 (patch)
treea2db1ab277df4fa633147598a6a5ce4a28d2ad61 /viewer/src
parenteb636568643e892491fd925f7a92fc3feba6a67e (diff)
downloadldgallery-1e5a1a51d21d78a4a717e9434932be9da20d3115.tar.gz
viewer: PR #238 code review changes (2nd)
Diffstat (limited to 'viewer/src')
-rw-r--r--viewer/src/assets/scss/scrollbar.scss2
-rw-r--r--viewer/src/assets/scss/transition.scss2
-rw-r--r--viewer/src/components/LdProposition.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/assets/scss/scrollbar.scss b/viewer/src/assets/scss/scrollbar.scss
index eb34d1e..a00b4c2 100644
--- a/viewer/src/assets/scss/scrollbar.scss
+++ b/viewer/src/assets/scss/scrollbar.scss
@@ -1,7 +1,7 @@
1/* ldgallery - A static generator which turns a collection of tagged 1/* ldgallery - A static generator which turns a collection of tagged
2-- pictures into a searchable web gallery. 2-- pictures into a searchable web gallery.
3-- 3--
4-- Copyright (C) 2020 Pacien TRAN-GIRARD 4-- Copyright (C) 2020 Guillaume FOUET
5-- 5--
6-- This program is free software: you can redistribute it and/or modify 6-- This program is free software: you can redistribute it and/or modify
7-- it under the terms of the GNU Affero General Public License as 7-- it under the terms of the GNU Affero General Public License as
diff --git a/viewer/src/assets/scss/transition.scss b/viewer/src/assets/scss/transition.scss
index bb41f0d..fb8d2af 100644
--- a/viewer/src/assets/scss/transition.scss
+++ b/viewer/src/assets/scss/transition.scss
@@ -1,7 +1,7 @@
1/* ldgallery - A static generator which turns a collection of tagged 1/* ldgallery - A static generator which turns a collection of tagged
2-- pictures into a searchable web gallery. 2-- pictures into a searchable web gallery.
3-- 3--
4-- Copyright (C) 2020 Pacien TRAN-GIRARD 4-- Copyright (C) 2020 Guillaume FOUET
5-- 5--
6-- This program is free software: you can redistribute it and/or modify 6-- This program is free software: you can redistribute it and/or modify
7-- it under the terms of the GNU Affero General Public License as 7-- it under the terms of the GNU Affero General Public License as
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")