Skip to content

Commit

Permalink
fix: fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sghoweri committed Sep 5, 2019
1 parent 82443e3 commit 5a2bd89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/bolt-typeahead/autosuggest.js
Expand Up @@ -86,7 +86,7 @@ class BoltAutosuggest extends withPreact() {
}

// return the parent that's rendering <bolt-autosuggest> based on Shadow DOM usage
get getParent(){
get getParent() {
if (this.shadowRoot && this.shadowRoot.host) {
return this.shadowRoot.host;
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/bolt-typeahead/typeahead.js
Expand Up @@ -83,7 +83,7 @@ class BoltTypeahead extends withEvents(withLitHtml()) {
render(data) {
return html`
${this.addStyles([styles])}
<bolt-autosuggest no-shadow
<bolt-autosuggest
.value=${data.inputValue}
.items=${data.items}
.placeholder=${data.placeholder}
Expand Down

0 comments on commit 5a2bd89

Please sign in to comment.