Browse Source

Code review fixes

pull/4354/head
csehatt741 6 months ago
parent
commit
d6663acee5
  1. 1
      CHANGELOG.md
  2. 4
      apps/api/src/app/admin/admin.service.ts

1
CHANGELOG.md

@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Handled an exception in the export functionality related to platforms
- Handled an exception in the benchmark service related to unnamed asset profiles
- Fixed the functionality to delete an asset profile of type currency
## 2.142.0 - 2025-02-28

4
apps/api/src/app/admin/admin.service.ts

@ -117,7 +117,9 @@ export class AdminService {
if (customCurrencies.includes(currency)) {
const updatedCustomCurrencies = customCurrencies.filter(
(aCurrency) => aCurrency !== currency
(customCurrency) => {
return customCurrency !== currency;
}
);
await this.putSetting(

Loading…
Cancel
Save