@alauda/ui 6.5.2-beta.6 → 6.5.2-beta.7

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.
@@ -1434,13 +1434,13 @@ class BaseTooltip {
1434
1434
  }
1435
1435
  }
1436
1436
  get disabled() {
1437
- return this._disabled || !this.content;
1437
+ return this._disabled;
1438
1438
  }
1439
1439
  get isCreated() {
1440
1440
  return !!this.overlayRef;
1441
1441
  }
1442
1442
  createTooltip() {
1443
- if (this.disabled || this.isCreated) {
1443
+ if (this.disabled || this.isCreated || !this.content) {
1444
1444
  return;
1445
1445
  }
1446
1446
  this.overlayRef = this.createOverlay();