Skip to content

Commit 3e45fd8

Browse files
committed
Change Substance to Compound in Comparison view
1 parent 8f70ed1 commit 3e45fd8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/ConcentrationTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const ConcentrationTable: React.FC<ConcentrationTableProps> = ({
4343
<Table>
4444
<Table.Head>
4545
<Table.Row>
46-
<Table.Cell>Substance</Table.Cell>
46+
<Table.Cell>Compound</Table.Cell>
4747
{simulations.map((sim) => (
4848
<Table.Cell key={sim.id}>
4949
{sim.modelName} ({sim.id.slice(0, 8)})

frontend/src/components/GridSimulation/CompareGridSimulations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const CompareSection: React.FC<CompareSectionProps> = ({ results, modelIndex, ph
7575
<>
7676
<NativeSelect
7777
id={`compare-${modelIndex}-${phaseKind}`}
78-
label="Output substance"
78+
label="Output compound"
7979
value={selectedSubstance}
8080
onChange={(e) => setSubstance(e.target.value)}
8181
style={{ maxWidth: "400px", marginBottom: "1rem" }}

0 commit comments

Comments
 (0)