Semicolon cleanup.
This commit is contained in:
parent
8d6465de71
commit
3be01f1240
@ -79,7 +79,7 @@ export class OperationListComponent implements OnInit {
|
|||||||
this.accountService.get(
|
this.accountService.get(
|
||||||
+this.route.snapshot.paramMap.get('accountId')
|
+this.route.snapshot.paramMap.get('accountId')
|
||||||
).subscribe(account => {
|
).subscribe(account => {
|
||||||
this.account = account
|
this.account = account;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.route.queryParamMap.subscribe(() => {
|
this.route.queryParamMap.subscribe(() => {
|
||||||
@ -108,7 +108,7 @@ export class OperationListComponent implements OnInit {
|
|||||||
this.save(operation);
|
this.save(operation);
|
||||||
}, (reason) => {
|
}, (reason) => {
|
||||||
});
|
});
|
||||||
};
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Load operations.
|
* Load operations.
|
||||||
@ -125,7 +125,7 @@ export class OperationListComponent implements OnInit {
|
|||||||
).subscribe((operations: Operation[]) => {
|
).subscribe((operations: Operation[]) => {
|
||||||
this.operations = operations.reverse();
|
this.operations = operations.reverse();
|
||||||
});
|
});
|
||||||
};
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Save an operation and return a promise.
|
* Save an operation and return a promise.
|
||||||
@ -144,5 +144,5 @@ export class OperationListComponent implements OnInit {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user