Skip to content

Commit

Permalink
chore: Add equinor code to gde table.
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Oct 17, 2024
1 parent 6b2b1a2 commit 59df60d
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,24 @@ export const GrossDepositionEnviromentGroup = ({
/>
</Button>
</Table.Cell>
<Table.Cell>{row.grossDepEnv.identifier}</Table.Cell>
<Table.Cell>{row.depEnv.identifier}</Table.Cell>
<Table.Cell>{row.subenv.identifier}</Table.Cell>
<Table.Cell>
{row.grossDepEnv.equinorCode +
' ' +
row.grossDepEnv.identifier}
</Table.Cell>
<Table.Cell>
{row.grossDepEnv.equinorCode + ' ' + row.depEnv.identifier}
</Table.Cell>
<Table.Cell>
{row.grossDepEnv.equinorCode + ' ' + row.subenv.identifier}
</Table.Cell>
<Table.Cell>
{row.architecturalElements.length > 0 && (
<ul>
{row.architecturalElements.map((a) => (
<li key={a.geologicalStandardId}>{a.identifier}</li>
<li key={a.geologicalStandardId}>
{a.equinorCode + ' ' + a.identifier}
</li>
))}
</ul>
)}
Expand Down

0 comments on commit 59df60d

Please sign in to comment.