Skip to content

Commit

Permalink
fix(scene): Remove scene causes no error anymore
Browse files Browse the repository at this point in the history
fix #86
  • Loading branch information
TimPietrusky committed Oct 11, 2019
1 parent 5ce5d6f commit 96a152c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/fixture-list-item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ class FixtureListItem extends LitElement {
render() {
const { fixture } = this

if (fixture === undefined) {
return html``
}

return html`
${links}
Expand Down

0 comments on commit 96a152c

Please sign in to comment.