We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e4aaff commit 5005fecCopy full SHA for 5005fec
packages/db-ui-elements-stencil/src/components/db-chip/db-chip.tsx
@@ -1,3 +1,4 @@
1
+// eslint-disable-next-line @typescript-eslint/no-unused-vars
2
import { Component, Host, h, Prop } from '@stencil/core';
3
import { uuid } from '../../utils/utils';
4
@@ -75,12 +76,7 @@ export class DbChip {
75
76
name={this.name}
77
checked={this.selected}
78
/>
- <label
79
- htmlFor={this.input_id}
80
- role="button"
81
- aria-hidden="true"
82
- data-variant={this.variant}
83
- >
+ <label htmlFor={this.input_id} data-variant={this.variant}>
84
{this.icon ? <db-icon variant="20-outline" icon={this.icon} /> : null}
85
<slot />
86
{this.iconafter ? (
0 commit comments