Skip to content

Commit

Permalink
refactor: Changed metadata ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Oct 26, 2023
1 parent 5fc5b16 commit 2e13b75
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,17 @@ const ResultMetadata = ({
<Styled.CaseLeftDiv>
<Table>
<Table.Body>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Family</Table.Cell>
<Table.Cell>{data[caseNumner].family}</Table.Cell>
</Table.Row>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">
Quality factor
</Table.Cell>
<Table.Cell>{data[caseNumner].quality}</Table.Cell>
</Table.Row>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Family</Table.Cell>
<Table.Cell>{data[caseNumner].family}</Table.Cell>
</Table.Row>

<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Attribute</Table.Cell>
<Table.Cell>{data[caseNumner].attribute}</Table.Cell>
Expand Down

0 comments on commit 2e13b75

Please sign in to comment.