Skip to content

Commit

Permalink
Updated update-live-demo.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Mehmet Baker <mehmet@mehmetbaker.dev>
  • Loading branch information
mehmetb committed Oct 29, 2023
1 parent 92dc1d0 commit b7a95f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function populateStatsTable(tga: TGAImage) {
table.innerHTML = '';

const rows = tga.toTable();
console.table(rows);

for (const [key, value] of Object.entries(rows)) {
const clone = template.content.cloneNode(true) as HTMLElement;
Expand All @@ -23,6 +22,8 @@ function populateStatsTable(tga: TGAImage) {
tds[1].innerText = value;
table.appendChild(clone);
}

console.table(rows);
}

async function drawToCanvas() {
Expand Down

0 comments on commit b7a95f7

Please sign in to comment.