Skip to content

Commit

Permalink
Merge pull request #147 from philippebeck/dev
Browse files Browse the repository at this point in the history
Release 2.1.3
  • Loading branch information
philippebeck authored Dec 31, 2023
2 parents 0da3f52 + f494a08 commit 8426008
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vesan",
"version": "2.1.2",
"version": "2.1.3",
"description": "UI with Vue-Elt, Servidio & Animadio",
"author": {
"name": "Philippe Beck",
Expand Down
5 changes: 4 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
<component :is="Component" :key="$route.path"/>
</router-view>

<FootElt :title1="val.FOOT_TITLE1" :title2="val.FOOT_TITLE2" :title3="val.FOOT_TITLE3">
<FootElt class="ani-slideT-it"
:title1="val.FOOT_TITLE1"
:title2="val.FOOT_TITLE2"
:title3="val.FOOT_TITLE3">
<template #foot1>
<ListElt :dynamic="true" :items="val.FOOT1">
<template #items="slotProps">
Expand Down
2 changes: 1 addition & 1 deletion src/views/main/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<CardElt class="flex-col gap-tn4">
<template #header>
<h2 class="ani-flipperX-loop-altrev-into">{{ val.HOME_SUB }}</h2>
<h2>{{ val.HOME_SUB }}</h2>
<b>{{ val.INTRO_HOME }}</b>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/views/main/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export default {
localStorage.setItem("userToken", JSON.stringify(res.token));
localStorage.setItem("userId", JSON.stringify(res.userId));
this.$router.push("/profile");
this.$router.go();
})
.catch(err => setError(err));
},
Expand Down

0 comments on commit 8426008

Please sign in to comment.