diff --git a/src/components/test-input/src/test-input.template.js b/src/components/test-input/src/test-input.template.js index 7dc04b82..26614dd9 100644 --- a/src/components/test-input/src/test-input.template.js +++ b/src/components/test-input/src/test-input.template.js @@ -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) { @@ -14,7 +15,7 @@ export function testInputTemplate(cls) { ${cls.searchResults - ? cls.searchResults.map((result) => html`

${result}

`) - : undefined} + ? cls.searchResults.map((result) => html`

${result}

`) + : undefined} `; }