Fix Member Enrollment Handle Import with custom format
This commit is contained in:
@@ -17,7 +17,8 @@
|
||||
"settings": {
|
||||
"import/resolver": {
|
||||
"typescript": {
|
||||
"alwaysTryTypes": true
|
||||
"alwaysTryTypes": true,
|
||||
"exceptAfterSingleLine": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -262,14 +262,14 @@ export default function CorporatePlanList() {
|
||||
<TableCell align="left">{row.member_id}</TableCell>
|
||||
<TableCell align="left">{row.principal_id}</TableCell>
|
||||
<TableCell align="left">{row.employeds[0]?.nik}</TableCell>
|
||||
<TableCell align="left">{row.current_policy.policy_id}</TableCell>
|
||||
<TableCell align="left">{row.current_policy.start}</TableCell>
|
||||
<TableCell align="left">{row.current_policy?.policy_id}</TableCell>
|
||||
<TableCell align="left">{row.current_policy?.start}</TableCell>
|
||||
<TableCell align="left">{row.name}</TableCell>
|
||||
<TableCell align="left">{row.nric}</TableCell>
|
||||
<TableCell align="left">{row.email}</TableCell>
|
||||
<TableCell align="left">{row.plan_id}</TableCell>
|
||||
<TableCell align="left">{row.current_policy.start}</TableCell>
|
||||
<TableCell align="left">{row.current_policy.end}</TableCell>
|
||||
<TableCell align="left">{row.current_policy?.start}</TableCell>
|
||||
<TableCell align="left">{row.current_policy?.end}</TableCell>
|
||||
{( row.active ? (<TableCell align="right"><Button variant="outlined" color="success" size="small">Active</Button></TableCell>)
|
||||
: (<TableCell align="right"><Button variant="outlined" color="error" size="small">Inactive</Button></TableCell>)
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user