We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fa8e0 commit 2c9c594Copy full SHA for 2c9c594
‎packages/components/tag/src/tag-list.ts‎
@@ -166,15 +166,9 @@ export class TagList extends ScopedElementsMixin(LitElement) {
166
}
167
168
#onRemove(event: SlRemoveEvent & { target: Tag }): void {
169
- console.log('remove', event.target);
170
-
171
const index = this.#rovingTabindexController.elements.indexOf(event.target as Tag);
172
173
- console.log({ index });
174
175
this.#rovingTabindexController.focusToElement(index + (index === 0 ? 1 : -1));
176
177
- console.log('after remove');
178
179
180
#onResize(entries: ResizeObserverEntry[]): void {
0 commit comments