mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 04:55:21 +02:00
add missing }
This commit is contained in:
parent
1c83cd55bb
commit
dc0775602c
1 changed files with 7 additions and 6 deletions
|
@ -37,7 +37,8 @@ const state = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Português",
|
name: "Português",
|
||||||
value: "pt-PT"
|
value: "pt-PT",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -56,8 +57,8 @@ const actions = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const getters = {
|
const getters = {
|
||||||
getActiveLang: (state) => state.lang,
|
getActiveLang: state => state.lang,
|
||||||
getAllLangs: (state) => state.allLangs,
|
getAllLangs: state => state.allLangs,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue