Skip to content

Commit

Permalink
[Cleanup] eslint array-bracket-spacing
Browse files Browse the repository at this point in the history
`[ 1, 2 ]` -> `[1, 2]`

Part of HospitalRun#732.

Merging PR HospitalRun#733.  Closes HospitalRun#733
  • Loading branch information
btecu authored and jkleinsc committed Oct 13, 2016
1 parent fafd430 commit 50c7e13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/labs/index/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default AbstractIndexRoute.extend({
let searchStatus = this.get('searchStatus');
return {
options: {
startkey: [searchStatus, null, null, minId ],
startkey: [searchStatus, null, null, minId],
endkey: [searchStatus, maxValue, maxValue, maxId]
},
mapReduce: 'lab_by_status'
Expand Down
2 changes: 1 addition & 1 deletion app/mixins/pouch-adapter-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default Ember.Mixin.create({
session.invalidate();
}
}
let errmsg = [ err.status,
let errmsg = [err.status,
(err.name || err.error) + ':',
(err.message || err.reason)
].join(' ');
Expand Down

0 comments on commit 50c7e13

Please sign in to comment.