Fix linting issues

This commit is contained in:
Oliver Davies 2019-03-30 00:09:48 +00:00
parent 7366131817
commit a5939ffb50
21 changed files with 117 additions and 118 deletions

View file

@ -70,13 +70,13 @@ import data from '@/data'
export default {
components: {
ApplicationCard,
ApplicationDisplaySwitcher,
ApplicationDisplaySwitcher
},
data() {
data () {
return {
applications: data.applications,
display: 'grid',
display: 'grid'
}
},
@ -87,7 +87,7 @@ export default {
},
methods: {
handleDisplay(mode) {
handleDisplay (mode) {
this.display = mode
}
}