Remove console.log

This commit is contained in:
Cory LaViska
2020-10-16 10:00:58 -04:00
parent 938c02a889
commit 19243939a1
2 changed files with 4 additions and 1 deletions

View File

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

View File

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