@wizishop/angular-components 15.1.60 → 15.1.61

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.
@@ -6140,7 +6140,7 @@ class AiExpressComponent {
6140
6140
  }
6141
6141
  ngOnInit() { }
6142
6142
  showPopup() {
6143
- if (!this.isOpen && this.isRegister && !this.disabled) {
6143
+ if (!this.isOpen && !this.disabled) {
6144
6144
  this.isOpen = true;
6145
6145
  }
6146
6146
  }
@@ -6160,7 +6160,7 @@ class AiExpressComponent {
6160
6160
  }
6161
6161
  }
6162
6162
  hidePopup() {
6163
- if (this.isOpen && this.isRegister && !this.disabled) {
6163
+ if (this.isOpen && !this.disabled) {
6164
6164
  this.isOpen = false;
6165
6165
  }
6166
6166
  }