fix(assessment-history-officer): fix set minimum value presentase
This commit is contained in:
parent
505ec55ada
commit
068cabe1d9
|
@ -63,7 +63,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, 2) * 100 }}%</span>
|
||||
@if ($evaluation->cf_value < 0)
|
||||
<span>0%<span>
|
||||
@else
|
||||
<span>{{ number_format($evaluation->cf_value, 2) * 100 }}%</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<div class="d-flex gap-2 justify-content-center">
|
||||
|
|
Loading…
Reference in New Issue