This commit is contained in:
2022-04-23 11:12:35 +00:00
committed by Gitea
parent 4fa227c452
commit c30b33a070
5 changed files with 7 additions and 5 deletions

View File

@ -42,7 +42,7 @@ function getStatusSymbol() {
<td class="hidden md:block">
{{ formatDate(TX.Date) }}
</td>
<td class="pl-2 md:pl-0" v-if="withAccount">
<td v-if="withAccount" class="pl-2 md:pl-0">
{{ TX.Account }}
</td>
<td class="pl-2 md:pl-0">
@ -75,7 +75,7 @@ function getStatusSymbol() {
<TransactionEditRow
v-if="edit"
:transactionid="TX.ID"
:withAccount="withAccount"
:with-account="withAccount"
@save="edit = false"
/>
</template>