Skip to content
Snippets Groups Projects
Commit 4669ef83 authored by Pierre-Jean CHANCELLIER's avatar Pierre-Jean CHANCELLIER
Browse files

reduce period for exit forecasts

parent e94e7682
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<img :src="$icon(512)" alt="Accueil" class="logo" /> <img :src="$icon(512)" alt="Accueil" class="logo" />
<div> <div>
<h1 class="h3"> <h1 class="h3">
Wotwizard <small><span class="small">v0.21</span></small> Wotwizard <small><span class="small">v0.22</span></small>
</h1> </h1>
<small class="text-muted">{{ $t("slogan") }}</small> <small class="text-muted">{{ $t("slogan") }}</small>
</div> </div>
......
...@@ -64,17 +64,18 @@ export default { ...@@ -64,17 +64,18 @@ export default {
} }
], ],
error: null, error: null,
favoris: false favoris: false,
period: 1317600
} }
}, },
computed: { computed: {
getParams() { getParams() {
if (this.favoris) { if (this.favoris) {
return localStorage.favourites return localStorage.favourites
? { group: this.$favourites.list, period: 2635200 } ? { group: this.$favourites.list, period: this.period }
: { group: "wotwizard-nobody", period: 2635200 } : { group: "wotwizard-nobody", period: this.period }
} }
return { period: 2635200 } return { period: this.period }
} }
}, },
methods: { methods: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment