currencies: make exchange rates column nonsortable, nonfilterable
authorGalen Charlton <gmc@equinoxinitiative.org>
Thu, 15 Apr 2021 21:51:13 +0000 (17:51 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Thu, 15 Apr 2021 21:51:13 +0000 (17:51 -0400)
Part of LH#23

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/eg2/src/app/staff/admin/acq/currency/currencies.component.html

index 2c906cf..5ee1032 100644 (file)
@@ -66,7 +66,8 @@
   <ng-template #exchangeRatesTmpl let-currency="row">
     <button class="btn btn-outline-secondary" (click)="openExchangeRatesDialog(currency.code())" i18n>Manage Exchange Rates</button>
   </ng-template>
-  <eg-grid-column i18n-label label="Exchange Rates" name="exchange_rates" [cellTemplate]="exchangeRatesTmpl"></eg-grid-column>
+  <eg-grid-column i18n-label label="Exchange Rates" name="exchange_rates"
+    [sortable]="false" [filterable]="false" [cellTemplate]="exchangeRatesTmpl"></eg-grid-column>
 
 </eg-grid>