Skip to content

Commit f37313d

Browse files
author
mmarchois
committed
Change daily rates order
1 parent 567aa13 commit f37313d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/routes/accounting/daily_rates/_Table.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<tr
1212
class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800">
1313
<th class="px-4 py-3">{$_('accounting.daily_rates.customer')}</th>
14-
<th class="px-4 py-3">{$_('accounting.daily_rates.user')}</th>
1514
<th class="px-4 py-3">{$_('accounting.daily_rates.task')}</th>
15+
<th class="px-4 py-3">{$_('accounting.daily_rates.user')}</th>
1616
<th class="px-4 py-3">{$_('accounting.daily_rates.amount')}</th>
1717
<th class="px-4 py-3">{$_('common.actions')}</th>
1818
</tr>
@@ -21,8 +21,8 @@
2121
{#each items as { id, user, task, customer, amount } (id)}
2222
<tr class="text-gray-700 dark:text-gray-400">
2323
<td class="px-4 py-3 text-sm">{customer.name}</td>
24-
<td class="px-4 py-3 text-sm">{user.firstName} {user.lastName}</td>
2524
<td class="px-4 py-3 text-sm">{task.name}</td>
25+
<td class="px-4 py-3 text-sm">{user.firstName} {user.lastName}</td>
2626
<td class="px-4 py-3 text-sm">{format(amount)}</td>
2727
<td class="px-4 py-3">
2828
<div class="flex items-center space-x-4 text-sm">

0 commit comments

Comments
 (0)