DEV: run files through prettier

2ae21e9 was prettiered using an old version of prettier.

This re-applies it using latest.
This commit is contained in:
Sam Saffron
2019-10-31 10:18:29 +11:00
parent 02a886ce13
commit 13cca3eaa0
25 changed files with 38 additions and 151 deletions

View File

@ -59,10 +59,7 @@ export default Component.extend({
showTitle: true,
showFilteringUI: false,
showDatesOptions: alias("model.dates_filtering"),
showRefresh: or(
"showDatesOptions",
"model.available_filters.length"
),
showRefresh: or("showDatesOptions", "model.available_filters.length"),
shouldDisplayTrend: and("showTrend", "model.prev_period"),
init() {
@ -84,11 +81,7 @@ export default Component.extend({
}
},
showError: or(
"showTimeoutError",
"showExceptionError",
"showNotFoundError"
),
showError: or("showTimeoutError", "showExceptionError", "showNotFoundError"),
showNotFoundError: equal("model.error", "not_found"),
showTimeoutError: equal("model.error", "timeout"),
showExceptionError: equal("model.error", "exception"),