fix(assessment-history): set minimum value
This commit is contained in:
parent
e4f139a521
commit
505ec55ada
|
@ -67,7 +67,11 @@ class="fw-medium link-primary">#VZ2101</a>
|
|||
<td class="threshold text_capitalize">{{ $evaluation->threshold_value }}
|
||||
</td>
|
||||
<td class="status">
|
||||
<span>{{ number_format($evaluation->cf_value, 4) * 100 }}%</span>
|
||||
@if ($evaluation->cf_value < 0)
|
||||
<span>0%<span>
|
||||
@else
|
||||
<span>{{ number_format($evaluation->cf_value, 4) * 100 }}%</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<div class="d-flex gap-2 justify-content-center">
|
||||
|
|
Loading…
Reference in New Issue