Prettier format all js files

This commit is contained in:
George Drummond
2019-01-24 09:38:43 -05:00
parent 20604e6ca9
commit 619bc9fe59
32 changed files with 553 additions and 443 deletions

View File

@@ -6,22 +6,22 @@ export default {
components: {
textinput,
LocalDatetime
LocalDatetime,
},
props: {
initialState: String
initialState: String,
},
data: function () {
data: function() {
return {
approving: this.initialState === 'approving',
denying: this.initialState === 'denying'
denying: this.initialState === 'denying',
}
},
methods: {
setReview: function (e) {
setReview: function(e) {
if (e.target.value === 'approving') {
this.approving = true
this.denying = false
@@ -30,5 +30,5 @@ export default {
this.denying = true
}
},
}
},
}