Skip to content

Commit 4fc4cec

Browse files
committed
Fix list tile
1 parent 4c81797 commit 4fc4cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/list-tile/list-tile.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default class ZnListTile extends ZincElement {
3535
@property({attribute: 'href', reflect: true}) href: string;
3636

3737
render() {
38-
const tag = this.href ? literal`a` : literal`button`;
38+
const tag = this.href ? literal`a` : literal`div`;
3939
return html`
4040
<${tag}
4141
href="${ifDefined(this.href)}"

0 commit comments

Comments
 (0)