Merged in feature/IO-2711-Check-Box-Visibility (pull request #1362)

IO-2711 Check Box Visibility

Approved-by: Patrick Fic
This commit is contained in:
Allan Carr
2024-03-21 21:42:43 +00:00
committed by Patrick Fic
4 changed files with 6 additions and 10 deletions

View File

@@ -82,7 +82,7 @@ export default function JobReconciliationBillsTable({
state.sortedInfo.order,
render: (text, record) => (
<Checkbox disabled checked={record.bill.is_credit_memo} />
<Checkbox checked={record.bill.is_credit_memo} />
),
},
];

View File

@@ -302,7 +302,7 @@ const r = ({ technician, state, activeStatuses, data, bodyshop }) => {
onFilter: (value, record) =>
value.includes(record.special_coverage_policy),
render: (text, record) => (
<Checkbox disabled checked={record.special_coverage_policy} />
<Checkbox checked={record.special_coverage_policy} />
),
},