taxtank-core 2.1.70 → 2.1.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25687,7 +25687,7 @@ class BankAccountsFilterForm extends AbstractForm {
25687
25687
  searchQuery: new FormControl(''),
25688
25688
  currencyType: new FormControl({
25689
25689
  value: CurrencyTypeEnum.ALL,
25690
- disabled: bankAccounts.items.every(bankAccount => !bankAccount.isForeign),
25690
+ disabled: !bankAccounts.items.some(bankAccount => bankAccount.isForeign),
25691
25691
  }),
25692
25692
  currencies: new FormControl({ value: [], disabled: true }),
25693
25693
  });