Slightly improves Crew Monitor readability (#19161)

* Gray out 'N/A' location text

* Add spacing between status and damage values

* Hi, I'm new here

* Plain text instead of expression
This commit is contained in:
Nathan Winters
2022-10-03 15:41:30 +02:00
committed by GitHub
parent 8e39fbc57c
commit 4ae090ef88
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -107,7 +107,7 @@ const CrewMonitorDataView = (_properties, context) => {
{getStatText(cm, data.critThreshold)}
</Box>
{cm.sensor_type >= 2 ? (
<Box inline>
<Box inline ml={1}>
{'('}
<Box inline color={COLORS.damageType.oxy}>
{cm.oxy}
@@ -145,7 +145,9 @@ const CrewMonitorDataView = (_properties, context) => {
cm.area + ' (' + cm.x + ', ' + cm.y + ')'
)
) : (
'Not Available'
<Box inline color='grey'>
Not Available
</Box>
)}
</TableCell>
</Table.Row>
File diff suppressed because one or more lines are too long