Minor cosmetic changes

This commit is contained in:
2026-02-25 15:06:58 +01:00
parent e01f861420
commit 88aa969eb4
+3 -3
View File
@@ -252,7 +252,7 @@ const createInvoice = async () => {
<TableHead class="w-1/6">Datum</TableHead> <TableHead class="w-1/6">Datum</TableHead>
<TableHead class="w-1/6">Mitarbeiter</TableHead> <TableHead class="w-1/6">Mitarbeiter</TableHead>
<TableHead class="w-1">Beschreibung</TableHead> <TableHead class="w-1">Beschreibung</TableHead>
<TableHead class="w-1/100 text-right">Dauer</TableHead> <TableHead class="w-1/10 text-right">Dauer</TableHead>
<TableHead class="w-1/100 print:hidden"></TableHead> <TableHead class="w-1/100 print:hidden"></TableHead>
</TableRow> </TableRow>
</TableHeader> </TableHeader>
@@ -304,7 +304,7 @@ const createInvoice = async () => {
<Plus class="text-muted-foreground" /> Zeile einfügen <Plus class="text-muted-foreground" /> Zeile einfügen
</Button> </Button>
</TableCell> </TableCell>
<TableCell class="text-right" v-if="selectedTimesheet >= 0">{{ <TableCell class="text-right whitespace-nowrap" v-if="selectedTimesheet >= 0">{{
hourFormatter.format(timesheetSummary(timesheets[selectedTimesheet]).totalHours ?? 0) }} h hourFormatter.format(timesheetSummary(timesheets[selectedTimesheet]).totalHours ?? 0) }} h
</TableCell> </TableCell>
<TableCell class="print:hidden"></TableCell> <TableCell class="print:hidden"></TableCell>
@@ -342,7 +342,7 @@ const createInvoice = async () => {
<Progress <Progress
v-if="timesheetSummary(timesheet).hoursBilled && timesheetSummary(timesheet).hoursBilled > 0 && timesheetSummary(timesheet).totalHours" v-if="timesheetSummary(timesheet).hoursBilled && timesheetSummary(timesheet).hoursBilled > 0 && timesheetSummary(timesheet).totalHours"
:model-value="(timesheetSummary(timesheet).hoursBilled / timesheetSummary(timesheet).totalHours) * 100" :model-value="(timesheetSummary(timesheet).hoursBilled / timesheetSummary(timesheet).totalHours) * 100"
class="h-1 w-10 text-muted-foreground" /> class="h-1 w-10 text-success" />
</div> </div>
</li> </li>
</ul> </ul>