Remove alternating row-colors as they're non-functional

This commit is contained in:
Jan Bader 2022-04-22 20:54:27 +00:00 committed by Gitea
parent 44254ed4d0
commit 741589dc71
2 changed files with 1 additions and 4 deletions

View File

@ -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>

View File

@ -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>