mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
amélioration du filtre des monstres par indice de dangerosité + crédits + corrections diverses
This commit is contained in:
parent
414f02087c
commit
830b468ae2
15 changed files with 125 additions and 53 deletions
|
|
@ -90,7 +90,7 @@ export default new Vuex.Store({
|
|||
},
|
||||
setIsThemeDark: (state, payload) => {
|
||||
state.isThemeDark = payload
|
||||
console.log(payload)
|
||||
// console.log(payload)
|
||||
Cookies.set('heros-et-dragons-is-dark', state.isThemeDark)
|
||||
},
|
||||
setIsOpenAboutDialog: (state, payload) => {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ export default {
|
|||
|
||||
state: {
|
||||
search: '',
|
||||
challengeRange: [0, 30],
|
||||
challengeRange: [0, 33],
|
||||
types: [
|
||||
{ label: "Aberration", value: false },
|
||||
{ label: "Bête", value: false },
|
||||
|
|
@ -122,7 +122,7 @@ export default {
|
|||
state.challengeRange = payload
|
||||
},
|
||||
resetChallengeRange: (state, payload) => {
|
||||
state.challengeRange = [0, 30]
|
||||
state.challengeRange = [0, 33]
|
||||
},
|
||||
setTypes: (state, payload) => {
|
||||
state.types = payload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue