pull/779/head
Cory LaViska 2022-06-02 08:11:51 -04:00
rodzic 4d2de2dd57
commit 293f49e178
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -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');