Skip to content

Commit

Permalink
results: fix table render issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joacoc committed Nov 5, 2023
1 parent c9c54a6 commit b256025
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/providers/scripts/results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@
// Append the header row to the table
table.appendChild(headerRow);

// Fix for: https://github.com/microsoft/vscode-webview-ui-toolkit/issues/473
table.style.display = "grid";

// Append the table to the document body or a container element
container.appendChild(table);
}
Expand Down

0 comments on commit b256025

Please sign in to comment.