Skip to content

Commit

Permalink
Update depth unit
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Jan 30, 2024
1 parent fe6d980 commit bf3548a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,15 @@ const ProfileLayersList = props => {
<div>
{itemWithValidation?.validation?.invertedDepth &&
itemWithValidation?.depth_from}{" "}
m
m MD
</div>
}
/>
) : (
<NumericFormat
value={itemWithValidation?.depth_from}
thousandSeparator="'"
suffix=" m"
suffix=" m MD"
displayType="text"
/>
)}
Expand Down Expand Up @@ -318,15 +318,15 @@ const ProfileLayersList = props => {
<div>
{itemWithValidation?.validation?.invertedDepth &&
itemWithValidation?.depth_to}{" "}
m
m MD
</div>
}
/>
) : (
<NumericFormat
value={itemWithValidation?.depth_to}
thousandSeparator="'"
suffix=" m"
suffix=" m MD"
displayType="text"
/>
)}
Expand Down

0 comments on commit bf3548a

Please sign in to comment.