Skip to content

Commit

Permalink
Fix currency for correct mouseoever
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshelkovenkov committed Jan 14, 2022
1 parent 210b995 commit 00ebc2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ export class AppComponent implements OnInit {
title: {
// tslint:disable-next-line:typedef
formatter(val) {
return 'USD';
return 'Currency';
}
}
}
Expand Down Expand Up @@ -706,7 +706,7 @@ export class AppComponent implements OnInit {
title: {
// tslint:disable-next-line:typedef
formatter(val) {
return this.fiat;
return 'Currency';
}
}
}
Expand Down

0 comments on commit 00ebc2f

Please sign in to comment.