diff --git a/client/components/stats/Heatmap.vue b/client/components/stats/Heatmap.vue index 7ad71f1a..fe235bdd 100644 --- a/client/components/stats/Heatmap.vue +++ b/client/components/stats/Heatmap.vue @@ -235,7 +235,6 @@ export default { style: `transform:translate(${x}px,${y}px);background-color:${bgColor};outline:1px solid ${outlineColor};outline-offset:-1px;` }) } - console.log('Data', this.data) this.monthLabels = [] var lastMonth = null diff --git a/client/nuxt.config.js b/client/nuxt.config.js index 6e06589e..29773e1a 100644 --- a/client/nuxt.config.js +++ b/client/nuxt.config.js @@ -72,7 +72,8 @@ module.exports = { proxy: { '/s/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }, - '/api/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' } + '/api/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }, + '/dev/': { target: 'http://localhost:3333', pathRewrite: { '^/dev/': '' } } }, io: { diff --git a/client/pages/config/backups.vue b/client/pages/config/backups.vue index 8c936ded..17fc2021 100644 --- a/client/pages/config/backups.vue +++ b/client/pages/config/backups.vue @@ -11,14 +11,18 @@
schedule -
{{ $strings.HeaderSchedule }}:
+
+ {{ $strings.HeaderSchedule }}: +
{{ scheduleDescription }}
edit
event -
{{ $strings.LabelNextBackupDate }}:
+
+ {{ $strings.LabelNextBackupDate }}: +
{{ nextBackupDate }}
@@ -48,6 +52,11 @@