Fix prettier integration, format (#31)

* Fix prettier integration, format

* Reformat again
This commit is contained in:
Tom Moor
2017-04-27 21:48:13 -07:00
committed by GitHub
parent 51fade7439
commit 2095b3a874
74 changed files with 823 additions and 808 deletions

View File

@@ -11,7 +11,7 @@ class SearchStore {
/* Actions */
@action search = async (query) => {
@action search = async query => {
this.searchTerm = query;
this.isFetching = true;
@@ -24,14 +24,14 @@ class SearchStore {
this.pagination = pagination;
});
} catch (e) {
console.error("Something went wrong");
console.error('Something went wrong');
}
} else {
this.documents = null;
}
this.isFetching = false;
}
};
}
export default SearchStore;