allow dropdown events to bubble

pull/411/head
Cory LaViska 2021-04-01 09:37:59 -04:00
rodzic b2599d5a9f
commit 48216a4fdc
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -375,15 +375,12 @@ export default class SlColorPicker extends LitElement {
}
handleDropdownShow(event: CustomEvent) {
event.stopPropagation();
if (this.disabled) {
event.preventDefault();
}
}
handleDropdownAfterHide(event: CustomEvent) {
event.stopPropagation();
handleDropdownAfterHide() {
this.showCopyFeedback = false;
}