@wizishop/angular-components 0.0.171 → 0.0.172

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.
@@ -4333,7 +4333,9 @@
4333
4333
  this.worldAction.emit(true);
4334
4334
  };
4335
4335
  BlockWithCheckboxComponent.prototype.removeFirstClass = function () {
4336
- document.querySelectorAll('.firstWacRadioBLock')[0].classList.remove('firstWacRadioBLock');
4336
+ if (typeof document.querySelectorAll('.firstWacRadioBLock')[0] !== typeof undefined) {
4337
+ document.querySelectorAll('.firstWacRadioBLock')[0].classList.remove('firstWacRadioBLock');
4338
+ }
4337
4339
  };
4338
4340
  return BlockWithCheckboxComponent;
4339
4341
  }());