RO Closer bug fixes.
This commit is contained in:
@@ -26,7 +26,8 @@ export function LaborAllocationsTable({
|
||||
adjustments,
|
||||
technician,
|
||||
showWarning,
|
||||
warningCallback
|
||||
warningCallback,
|
||||
disabled
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
const [totals, setTotals] = useState([]);
|
||||
@@ -82,7 +83,7 @@ export function LaborAllocationsTable({
|
||||
render: (text, record) => (
|
||||
<Space wrap>
|
||||
{record.adjustments.toFixed(1)}
|
||||
{!technician && (
|
||||
{!technician && !disabled && (
|
||||
<LaborAllocationsAdjustmentEdit
|
||||
jobId={jobId}
|
||||
adjustments={adjustments}
|
||||
|
||||
Reference in New Issue
Block a user