Skip to content

Commit

Permalink
Fix incorrect i18n tooltip in dashboard graph.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Feb 23, 2022
1 parent 3495af7 commit 6fe36db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
});
},
Expand Down

0 comments on commit 6fe36db

Please sign in to comment.