Fix amount display and hide account

This commit is contained in:
Jan Bader 2022-01-25 19:20:54 +00:00
parent a4f94cd9d9
commit 3b130b8621

View File

@ -11,10 +11,10 @@ export default {
<v-container>
<table class="container col-lg-12" id="content">
<tr v-for="transaction in $store.getters.Transactions" class="{{transaction.Date.After now ? 'future' : ''}}">
<td>{{transaction.Date}}</td>
<td>
<td>{{transaction.Date.substring(0, 10)}}</td>
<!--<td>
{{transaction.Account}}
</td>
</td>-->
<td>
{{transaction.Payee}}
</td>
@ -28,7 +28,7 @@ export default {
<a :href="'/budget/'+$store.getters.CurrentBudget.ID+'/transaction/'+transaction.ID">{{transaction.Memo}}</a>
</td>
<td>
{{transaction.Amount}}
{{transaction.Amount.Int / 100}}
</td>
<td>
{{transaction.Status}}