feat: machine model dictionary and prettifier
This commit is contained in:
parent
222d99e307
commit
065761fb63
2 changed files with 9 additions and 1 deletions
|
|
@ -17,6 +17,7 @@ import { ReactComponent as ShutdownReversedIcon } from 'src/styling/icons/button
|
||||||
import { ReactComponent as ShutdownIcon } from 'src/styling/icons/button/shut down/zodiac.svg'
|
import { ReactComponent as ShutdownIcon } from 'src/styling/icons/button/shut down/zodiac.svg'
|
||||||
import { ReactComponent as UnpairReversedIcon } from 'src/styling/icons/button/unpair/white.svg'
|
import { ReactComponent as UnpairReversedIcon } from 'src/styling/icons/button/unpair/white.svg'
|
||||||
import { ReactComponent as UnpairIcon } from 'src/styling/icons/button/unpair/zodiac.svg'
|
import { ReactComponent as UnpairIcon } from 'src/styling/icons/button/unpair/zodiac.svg'
|
||||||
|
import { modelPrettifier } from 'src/utils/machine'
|
||||||
|
|
||||||
import { labelStyles, machineDetailsStyles } from './MachineDetailsCard.styles'
|
import { labelStyles, machineDetailsStyles } from './MachineDetailsCard.styles'
|
||||||
|
|
||||||
|
|
@ -208,7 +209,7 @@ const MachineDetailsRow = ({ it: machine, onActionSuccess }) => {
|
||||||
<Container className={classes.row}>
|
<Container className={classes.row}>
|
||||||
<Item xs={2}>
|
<Item xs={2}>
|
||||||
<Label>Machine Model</Label>
|
<Label>Machine Model</Label>
|
||||||
<span>{machine.model}</span>
|
<span>{modelPrettifier[machine.model]}</span>
|
||||||
</Item>
|
</Item>
|
||||||
<Item xs={4}>
|
<Item xs={4}>
|
||||||
<Label>Paired at</Label>
|
<Label>Paired at</Label>
|
||||||
|
|
|
||||||
7
new-lamassu-admin/src/utils/machine.js
Normal file
7
new-lamassu-admin/src/utils/machine.js
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
const modelPrettifier = {
|
||||||
|
douro1: 'Douro',
|
||||||
|
sintra: 'Sintra',
|
||||||
|
gaia: 'Gaia'
|
||||||
|
}
|
||||||
|
|
||||||
|
export { modelPrettifier }
|
||||||
Loading…
Add table
Add a link
Reference in a new issue