taxtank-core 0.21.2 → 0.21.3

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.
@@ -14791,6 +14791,9 @@
14791
14791
  }
14792
14792
 
14793
14793
  function compareMatOptions(option, value) {
14794
+ if (!option) {
14795
+ return false;
14796
+ }
14794
14797
  return option.id === value.id;
14795
14798
  }
14796
14799
  function displayMatOptions(option) {
@@ -14978,7 +14981,7 @@
14978
14981
  currentBalance: new forms.FormControl(null, forms.Validators.required),
14979
14982
  accountNumber: new forms.FormControl(null, [forms.Validators.required, forms.Validators.pattern(BankAccountAddManualForm.accountNumberPattern)]),
14980
14983
  tankType: new forms.FormControl(null, forms.Validators.required),
14981
- }) || this;
14984
+ }, classTransformer.plainToClass(BankAccount, {})) || this;
14982
14985
  _this.connection = connection;
14983
14986
  _this.listenEvents();
14984
14987
  return _this;