Skip to content

Commit

Permalink
copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Spacerat committed Feb 1, 2023
1 parent 32416d2 commit f8519ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions calc-frontend/components/AnalysisDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ export function AnalysisDisplay({ analysis }: { analysis: Analysis }) {
<table>
<thead>
<tr>
<th>This percent of the time</th>
<th>X% probability...</th>
{output.percentiles.map((p) => (
<th key={p.percentile}>{p.percentile}%</th>
))}
</tr>
</thead>
<tbody>
<tr>
<td>The result is below...</td>
<td>the result is below...</td>
{output.percentiles.map((p) => (
<td key={p.percentile}>
<Value value={p.value} unit={output.unit} />
Expand Down

0 comments on commit f8519ec

Please sign in to comment.