feat: get upload component up to spec
This commit is contained in:
parent
bedb75b767
commit
10b8838cf0
7 changed files with 130 additions and 34 deletions
|
|
@ -75,6 +75,8 @@ const CustomerData = ({ customer, updateCustomer }) => {
|
|||
? 'Passed'
|
||||
: 'Failed'
|
||||
|
||||
const customEntries = [] // get customer custom entries
|
||||
|
||||
const isEven = elem => elem % 2 === 0
|
||||
|
||||
const getVisibleCards = _.filter(
|
||||
|
|
@ -322,6 +324,11 @@ const CustomerData = ({ customer, updateCustomer }) => {
|
|||
</Grid>
|
||||
</Grid>
|
||||
)}
|
||||
{customEntries && (
|
||||
<div className={classes.wrapper}>
|
||||
<div className={classes.separator}>{'Custom data entry'}</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue