Skip to content

Commit

Permalink
fix: add missing $
Browse files Browse the repository at this point in the history
  • Loading branch information
sghoweri committed Oct 21, 2019
1 parent 7c1d8d1 commit c95a06e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Logo extends BaseLitComponent {
/>
${this.props.text && this.props.text !== ''
? html`
<span class="pl-c-logo__text">{this.props.text}</span>
<span class="pl-c-logo__text">${this.props.text}</span>
`
: ''}
</a>
Expand Down

1 comment on commit c95a06e

@sghoweri
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^ whoops — missed this when concerting the template’s JSX over to template literals!

Please sign in to comment.