Tạo page ticket management

This commit is contained in:
Truong Vo 2024-08-08 10:28:20 +07:00
parent f8c1459be9
commit d53491830e
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ const Tickets = () => {
size: '5%',
header: 'Action',
render: (row: any) => {
return (
return row.status === 'WAITING' ? (
<Box className={classes.optionIcon}>
<IconTrash
className={classes.deleteIcon}
@ -197,7 +197,7 @@ const Tickets = () => {
height={20}
/>
</Box>
)
) : null
},
},
]