Skip to content

Commit

Permalink
Improve formatting of draws table
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Aug 5, 2024
1 parent 073b74b commit 38882ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/app/SamplerOutputView/SamplerOutputView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const DrawsView: FunctionComponent<DrawsViewProps> = ({
<td>{drawChainIds[i]}</td>
<td>{drawNumbers[i]}</td>
{draws.map((draw, j) => (
<td key={j}>{draw[i]}</td>
<td key={j}>{draw[i].toPrecision(6)}</td>
))}
</tr>
))}
Expand Down
1 change: 1 addition & 0 deletions gui/src/draws-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
.draws-table th,
.draws-table td {
padding: 2px 2px;
white-space: nowrap;
}

.draws-table tbody tr {
Expand Down

0 comments on commit 38882ea

Please sign in to comment.