Fix linting issues

This commit is contained in:
Oliver Davies 2019-03-24 20:45:05 +00:00
parent 199daea1b9
commit 7366131817

View file

@ -95,24 +95,24 @@ export default {
EnvironmentCards,
QuickHelp,
TaskLog,
ToggleHelp,
ToggleHelp
},
props: {
id: String,
id: String
},
data() {
data () {
return {
applications: data.applications,
help: {
hidden: false,
hidden: false
}
}
},
computed: {
application: function() {
application: function () {
return this.applications[this.id]
}
}