Merge remote-tracking branch 'origin/feature/fix-gql-state' into feature/fix-gql-state
This commit is contained in:
commit
8e9d6ae084
1 changed files with 6 additions and 0 deletions
|
|
@ -13,6 +13,12 @@ export default {
|
|||
: theme.collapsedSections.push(value)
|
||||
},
|
||||
|
||||
setCollapsedSection({ theme }, value) {
|
||||
theme.collapsedSections.includes(value)
|
||||
? (theme.collapsedSections = theme.collapsedSections.filter(section => section !== value))
|
||||
: theme.collapsedSections.push(value)
|
||||
},
|
||||
|
||||
addGQLHeader({ gql }, object) {
|
||||
gql.headers.push(object)
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue