From 1e5a1a51d21d78a4a717e9434932be9da20d3115 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 11 Sep 2020 21:10:09 +0200 Subject: viewer: PR #238 code review changes (2nd) --- viewer/src/assets/scss/scrollbar.scss | 2 +- viewer/src/assets/scss/transition.scss | 2 +- viewer/src/components/LdProposition.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'viewer/src') 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 @@ /* ldgallery - A static generator which turns a collection of tagged -- pictures into a searchable web gallery. -- --- Copyright (C) 2020 Pacien TRAN-GIRARD +-- Copyright (C) 2020 Guillaume FOUET -- -- This program is free software: you can redistribute it and/or modify -- 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 @@ /* ldgallery - A static generator which turns a collection of tagged -- pictures into a searchable web gallery. -- --- Copyright (C) 2020 Pacien TRAN-GIRARD +-- Copyright (C) 2020 Guillaume FOUET -- -- This program is free software: you can redistribute it and/or modify -- 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 { getInitialTagDisplayLimit() { const limit = this.$galleryStore.config?.initialTagDisplayLimit ?? 10; - return limit > 0 ? limit : 1000; + return limit >= 0 ? limit : 1000; } @Watch("$route") -- cgit v1.2.3