Remove alternating row-colors as they're non-functional
This commit is contained in:
parent
efda6e1b65
commit
006180c961
@ -36,9 +36,7 @@ function getStatusSymbol() {
|
||||
<tr
|
||||
v-if="!edit"
|
||||
class="{{new Date(TX.Date) > new Date() ? 'future' : ''}}"
|
||||
:class="[index % 6 < 3 ? 'md:bg-gray-300 dark:md:bg-gray-700' : 'md:bg-gray-100 dark:md:bg-gray-900']"
|
||||
>
|
||||
<!--:class="[index % 6 < 3 ? index % 6 === 1 ? 'bg-gray-400' : 'bg-gray-300' : index % 6 !== 4 ? 'bg-gray-100' : '']">-->
|
||||
<td class="hidden md:block">
|
||||
{{ formatDate(TX.Date) }}
|
||||
</td>
|
||||
|
@ -154,10 +154,9 @@ function createReconcilationTransaction() {
|
||||
</td>
|
||||
</tr>
|
||||
<TransactionRow
|
||||
v-for="(transaction, index) in dayTransactions"
|
||||
v-for="transaction in dayTransactions"
|
||||
:key="transaction.ID"
|
||||
:transactionid="transaction.ID"
|
||||
:index="index"
|
||||
/>
|
||||
</template>
|
||||
</table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user