fix prettier (#7823)
This commit is contained in:
parent
b2eb0f4ad6
commit
61438c825a
|
@ -170,9 +170,8 @@ export default Ember.Component.extend({
|
||||||
"[:prev_period]",
|
"[:prev_period]",
|
||||||
this.get("reportOptions.table.limit"),
|
this.get("reportOptions.table.limit"),
|
||||||
customFilters
|
customFilters
|
||||||
? JSON.stringify(
|
? JSON.stringify(customFilters, (key, value) =>
|
||||||
customFilters,
|
isNumeric(value) ? value.toString() : value
|
||||||
(key, value) => (isNumeric(value) ? value.toString() : value)
|
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
SCHEMA_VERSION
|
SCHEMA_VERSION
|
||||||
|
|
Loading…
Reference in New Issue