diff --git a/sist2-vue/src/Sist2Api.js b/sist2-vue/src/Sist2Api.js index c820be3..dcc5b4a 100644 --- a/sist2-vue/src/Sist2Api.js +++ b/sist2-vue/src/Sist2Api.js @@ -421,7 +421,9 @@ class Sist2Api { return axios.get(`${this.baseUrl}fts/dateRange`) .then(resp => ({ min: resp.data.dateMin, - max: resp.data.dateMax, + max: (resp.data.dateMax === resp.data.dateMin) + ? resp.data.dateMax + 1 + : resp.data.dateMax, })); } @@ -585,7 +587,7 @@ class Sist2Api { } } - getTagSuggestions(prefix) { + getTagSuggestions(prefix) { if (this.backend() === "sqlite") { return this.getTagSuggestionsSqlite(prefix); } else {