This commit is contained in:
Cory LaViska
2022-06-02 08:11:51 -04:00
parent 4d2de2dd57
commit 293f49e178

View File

@@ -209,7 +209,11 @@ export default class SlTooltip extends LitElement {
@watch('open', { waitUntilFirstUpdate: true })
async handleOpenChange() {
if (this.open && !this.disabled) {
if (this.open) {
if (this.disabled) {
return;
}
// Show
emit(this, 'sl-show');