diff --git a/components/navigation/menu/Sidebar.vue b/components/navigation/menu/Sidebar.vue index 41f3737fad1a167d63eee2daad7ff025baa8fbdb..1954e41ea789088e0697581919a2ca144c721585 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 ecc4e74d057f5fa69a182d7b84182c74b31d79e1..349c492ab7a6dfee3d662059b6408d2db5599619 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: {