From 4669ef83e950659be829cc42ee8f4a0a954d0c37 Mon Sep 17 00:00:00 2001 From: paidge <paidge_cs@hotmail.com> Date: Mon, 14 Feb 2022 12:49:24 +0100 Subject: [PATCH] reduce period for exit forecasts --- components/navigation/menu/Sidebar.vue | 2 +- pages/previsions/futures_sorties.vue | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/components/navigation/menu/Sidebar.vue b/components/navigation/menu/Sidebar.vue index 41f3737..1954e41 100644 --- a/components/navigation/menu/Sidebar.vue +++ b/components/navigation/menu/Sidebar.vue @@ -5,7 +5,7 @@ <img :src="$icon(512)" alt="Accueil" class="logo" /> <div> <h1 class="h3"> - Wotwizard <small><span class="small">v0.21</span></small> + Wotwizard <small><span class="small">v0.22</span></small> </h1> <small class="text-muted">{{ $t("slogan") }}</small> </div> diff --git a/pages/previsions/futures_sorties.vue b/pages/previsions/futures_sorties.vue index ecc4e74..349c492 100644 --- a/pages/previsions/futures_sorties.vue +++ b/pages/previsions/futures_sorties.vue @@ -64,17 +64,18 @@ export default { } ], error: null, - favoris: false + favoris: false, + period: 1317600 } }, computed: { getParams() { if (this.favoris) { return localStorage.favourites - ? { group: this.$favourites.list, period: 2635200 } - : { group: "wotwizard-nobody", period: 2635200 } + ? { group: this.$favourites.list, period: this.period } + : { group: "wotwizard-nobody", period: this.period } } - return { period: 2635200 } + return { period: this.period } } }, methods: { -- GitLab