Various samll bugfixes.
This commit is contained in:
@@ -52,8 +52,9 @@ export function LaborAllocationsTable({ joblines, timetickets, bodyshop }) {
|
||||
<Col span={6}>
|
||||
<strong
|
||||
style={{
|
||||
color: Math.round(t.total - t.claimed) > 0 ? "green" : "red",
|
||||
}}>
|
||||
color: t.total - t.claimed > 0 ? "green" : "red",
|
||||
}}
|
||||
>
|
||||
{(t.total - t.claimed).toFixed(2)}
|
||||
</strong>
|
||||
</Col>
|
||||
|
||||
Reference in New Issue
Block a user