Skip to content

Commit

Permalink
chore(*): fix eslint warning (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyexeption committed Nov 15, 2021
1 parent 8bf7af6 commit 350a72e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/nav-drawer/nav-drawer-item.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { html, LitElement } from 'lit';
import { property, queryAssignedNodes, state } from 'lit/decorators.js';
import { live } from 'lit/directives/live.js';
import { partNameMap } from '../common/util';
import { styles } from './nav-drawer-item.material.css';

Expand Down Expand Up @@ -53,11 +52,7 @@ export default class IgcNavDrawerItemComponent extends LitElement {

protected render() {
return html`
<div
part="${partNameMap(this.resolvePartNames('base'))}"
.disabled="${this.disabled}"
.active="${live(this.active)}"
>
<div part="${partNameMap(this.resolvePartNames('base'))}">
<span part="icon">
<slot name="icon"></slot>
</span>
Expand Down

0 comments on commit 350a72e

Please sign in to comment.