mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-01 11:45:01 +08:00
Fix incorrect i18n tooltip in dashboard graph.
This commit is contained in:
parent
3495af7712
commit
6fe36db477
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ export default Vue.extend({
|
|||
// Pull the charts.
|
||||
this.$api.getDashboardCharts().then((data) => {
|
||||
this.isChartsLoading = false;
|
||||
this.renderChart(this.$t('dashboard.linkClicks'), data.campaignViews, this.$refs['chart-views']);
|
||||
this.renderChart(this.$t('dashboard.campaignViews'), data.campaignViews, this.$refs['chart-views']);
|
||||
this.renderChart(this.$t('dashboard.linkClicks'), data.linkClicks, this.$refs['chart-clicks']);
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue