From 0af9bd1cc9117c7f4d82140e51cf78482bb830cd Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 4 Jun 2021 11:44:15 -0400 Subject: [PATCH] currency: fix lint Signed-off-by: Galen Charlton --- .../src/app/staff/admin/acq/currency/exchange-rates-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/currency/exchange-rates-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/currency/exchange-rates-dialog.component.ts index 243fad47b0..045a757405 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/acq/currency/exchange-rates-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/currency/exchange-rates-dialog.component.ts @@ -113,7 +113,7 @@ export class ExchangeRatesDialogComponent }); this.ratios.sort((a, b) => { return a.to_currency().code() < b.to_currency().code() ? -1 : 1; - }) + }); } save() { -- 2.11.0