diff --git a/src/app/features/showcase/presentation/showcase.component.ts b/src/app/features/showcase/presentation/showcase.component.ts index b489c0f..beef700 100644 --- a/src/app/features/showcase/presentation/showcase.component.ts +++ b/src/app/features/showcase/presentation/showcase.component.ts @@ -41,6 +41,8 @@ class ShowcaseComponent extends BaseComponent { */ private renderTable(): void { const tbody = this._dom.querySelector("tbody"); + const inputSample1 = '' + const inputSample2 = '' if (tbody) { tbody.innerHTML = this._apiData .map( @@ -50,7 +52,7 @@ class ShowcaseComponent extends BaseComponent { ${item.name} ${item.description} ${item.price} - + ${item.id % 3 === 0 ? inputSample1 : inputSample2} ` )