Skip to content

Commit

Permalink
feat(components): add space from license text
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffchew committed Oct 30, 2023
1 parent f67ed27 commit 507dece
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/test-input/src/test-input.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/

import { html } from 'lit';

export function testInputTemplate(cls) {
Expand All @@ -14,7 +15,7 @@ export function testInputTemplate(cls) {
<label>Search typeahead</label>
<input type="text" @input="${handleInput}" />
${cls.searchResults
? cls.searchResults.map((result) => html`<p>${result}</p>`)
: undefined}
? cls.searchResults.map((result) => html`<p>${result}</p>`)
: undefined}
</div>`;
}

0 comments on commit 507dece

Please sign in to comment.