Skip to content

Commit

Permalink
Improved preview script
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Nov 21, 2018
1 parent 73cea76 commit c57466f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/preview/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const createHTMLTableHeadRow = (amount: number) => {
<th class="icon">Icon</th>
<th class="iconName">Name</th>
`;
const columns = [...Array(amount)].map(item => item = pair).join('');
const columns = [...Array(amount)].map(() => pair).join('');
return `
<tr>
${columns}
Expand Down

0 comments on commit c57466f

Please sign in to comment.