Remove console.log

pull/261/head
Cory LaViska 2020-10-16 10:00:58 -04:00
rodzic 938c02a889
commit 19243939a1
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -6,6 +6,10 @@ Components with the <sl-badge type="warning" pill>Experimental</sl-badge> badge
_During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛
## Next
- Removed `console.log` from modal utility
## 2.0.0-beta.21
- Added `label` slot to `sl-input`, `sl-select`, and `sl-textarea` [#248](https://github.com/shoelace-style/shoelace/issues/248)

Wyświetl plik

@ -30,7 +30,6 @@ export default class Modal {
}
handleFocusIn(event: Event) {
console.log(this.element);
const target = event.target as HTMLElement;
const tagName = this.element.tagName.toLowerCase();