taxtank-core 2.1.3 → 2.1.4

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.
@@ -25017,7 +25017,7 @@ class BankAccountAllocationForm extends AbstractForm {
25017
25017
  */
25018
25018
  class BankAccountForm extends BankAccountAllocationForm {
25019
25019
  // static accountNumberPattern = '^[0-9]{6}[ ]{1}[0-9]{1,}$';
25020
- static { this.accountNumberPattern = '^[0-9]{6}'; }
25020
+ static { this.accountNumberPattern = '^[0-9]{6}.*$'; }
25021
25021
  constructor(bankAccount) {
25022
25022
  super(bankAccount, {
25023
25023
  type: new FormControl(bankAccount.type, Validators.required),