feat(overtime-contingent) : libellé header « Total H.payés » au lieu de « Contingent »

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-11 17:38:23 +02:00
parent 3590c8ea12
commit 0bc6600b07
4 changed files with 4 additions and 4 deletions
@@ -115,7 +115,7 @@ export const useEmployeeDetailPage = () => {
if (!c) return ''
const h = c.paidMinutes / 60
const hStr = Number.isInteger(h) ? String(h) : (Math.round(h * 10) / 10).toFixed(1).replace('.', ',')
return `Contingent ${c.year} : ${hStr} h / ${c.capHours} h`
return `Total H.payés ${c.year} : ${hStr} h / ${c.capHours} h`
})
const overtimeContingentExceeded = computed(() => {
const c = overtimeContingent.value