Apply eslint fixes

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-07-31 21:18:00 +02:00
parent 9821d77796
commit fca2e3530f
13 changed files with 19 additions and 19 deletions

View File

@@ -43,7 +43,7 @@ export default {
components: {
AppNavigation,
},
data: function() {
data() {
return {
addButton: {
icon: 'icon-add',
@@ -77,12 +77,12 @@ export default {
return this.sidebarRouterView || this.sidebarShownState
},
},
provide: function() {
provide() {
return {
boardApi: boardApi,
boardApi,
}
},
created: function() {
created() {
this.$store.dispatch('loadBoards')
this.$store.dispatch('loadSharees')
},