Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
style(align): fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
VMBindraban committed Jun 10, 2016
1 parent 595787b commit 67ed48f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/datatable.js
Expand Up @@ -65,11 +65,12 @@ export class DataTable {
load() {
this.criteria = this.buildCriteria();
this.repository.find(this.criteria, true).then(result => {
this.data = result;
}).catch(error => {
console.error('Something went wrong.', error);
});
this.repository.find(this.criteria, true)
.then(result => {
this.data = result;
}).catch(error => {
console.error('Something went wrong.', error);
});
}
pageChanged() {
Expand Down

0 comments on commit 67ed48f

Please sign in to comment.