Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AFEDev committed Jun 28, 2022
1 parent 8aef4f3 commit 0ea723f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
VUE_APP_FIXER=XZPVHDFSUG9m7fbNTV5tNzFvGPoNKeus
VUE_APP_TITLE=CRM
VUE_APP_FIXER=XZPVHDFSUG9m7fbNTV5tNzFvGPoNKeus
17 changes: 15 additions & 2 deletions src/components/HistoryTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
<thead>
<tr>
<th>#</th>
<th>{{ $filters.localizeFilter("Sum") }}</th>
<th>{{ $filters.localizeFilter("Date") }}</th>
<th>
{{ $filters.localizeFilter("Sum")
}}<i class="material-icons" id="sortBySum">import_export</i>
</th>
<th>
{{ $filters.localizeFilter("Date")
}}<i class="material-icons" id="sortByDate">import_export</i>
</th>
<th>{{ $filters.localizeFilter("Category") }}</th>
<th>{{ $filters.localizeFilter("Type") }}</th>
<th>{{ $filters.localizeFilter("Open") }}</th>
Expand Down Expand Up @@ -46,3 +52,10 @@ export default {
},
};
</script>

<style scoped>
th {
vertical-align: auto;
}
</style>
>
4 changes: 2 additions & 2 deletions src/views/HistoryView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<div class="row">
<div class="history-chart col s12 m6">
<div class="center">
<strong>{{ $filters.localizeFilter("Income") }}</strong>
<strong>{{ $filters.localizeFilter("Outcome") }}</strong>
</div>
<Pie :chart-options="chartOptions" :chart-data="chartData" />
</div>

<div class="history-chart col s12 m6">
<div class="center">
<strong>{{ $filters.localizeFilter("Outcome") }}</strong>
<strong>{{ $filters.localizeFilter("Income") }}</strong>
</div>
<Pie :chart-options="chartOptions" :chart-data="incomeChartData" />
</div>
Expand Down

0 comments on commit 0ea723f

Please sign in to comment.