fixed errors
This commit is contained in:
parent
db1e3efbf5
commit
e8217de9b6
2 changed files with 3 additions and 2 deletions
|
@ -124,7 +124,7 @@ export class RegisterComponent {
|
||||||
this.registerStatus = 'success';
|
this.registerStatus = 'success';
|
||||||
this.router.navigate(['/dashboard']);
|
this.router.navigate(['/dashboard']);
|
||||||
},
|
},
|
||||||
error =>
|
error => {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
try {
|
try {
|
||||||
this.registerStatusError = '"' + error.error.error + '" Error, ' + error.error.message;
|
this.registerStatusError = '"' + error.error.error + '" Error, ' + error.error.message;
|
||||||
|
|
|
@ -22,12 +22,13 @@ export class TransactionLogComponent implements OnInit {
|
||||||
clickedRecur: any;
|
clickedRecur: any;
|
||||||
public updatedDate: string;
|
public updatedDate: string;
|
||||||
public startTime: string;
|
public startTime: string;
|
||||||
categoryIdList: number[] = [];
|
categoryIdList: any;
|
||||||
categoryList: any;
|
categoryList: any;
|
||||||
categoryNameList: string[] = [];
|
categoryNameList: string[] = [];
|
||||||
transactionFormStatus: string;
|
transactionFormStatus: string;
|
||||||
transactionFormStatusSuccess: string;
|
transactionFormStatusSuccess: string;
|
||||||
transactionFormStatusError = 'Error received, please try again.';
|
transactionFormStatusError = 'Error received, please try again.';
|
||||||
|
updatedTime: string;
|
||||||
|
|
||||||
public paginateConfig: PaginationInstance = {
|
public paginateConfig: PaginationInstance = {
|
||||||
id: 'transpaginate',
|
id: 'transpaginate',
|
||||||
|
|
Reference in a new issue