UI for the extra outputs

This commit is contained in:
Daniel Dunn
2025-04-04 00:58:04 -06:00
parent 868dbc549e
commit 32adf8effe

View File

@@ -420,8 +420,8 @@ export default async function makeTool(
{calcData.extraOutputs?.map((extraOutput) => (
<TableRow key={extraOutput.title}>
<TableCell>{extraOutput.title}</TableCell>
<TableCell>
{extraOutput.title}
<NumericInputWithUnit
disabled={true}
defaultPrefix={extraOutput.defaultPrefix}
@@ -431,7 +431,6 @@ export default async function makeTool(
}}
></NumericInputWithUnit>
</TableCell>
<TableCell>{extraOutput.unit}</TableCell>
<TableCell></TableCell>
</TableRow>
))}