diff --git a/client/pages/config/backups.vue b/client/pages/config/backups.vue
index 9fda438f..15ca6406 100644
--- a/client/pages/config/backups.vue
+++ b/client/pages/config/backups.vue
@@ -25,7 +25,9 @@
-
Number of backups to keep
+
+ Number of backups to keep info_outlined
+
@@ -53,7 +55,10 @@ export default {
maxBackupSize: 1,
cronExpression: '',
newServerSettings: {},
- showCronBuilder: false
+ showCronBuilder: false,
+ backupsTooltip: 'Backups saved in /metadata/backups',
+ numBackupsToKeepTooltip: 'Only 1 backup will be removed at a time so if you already have more backups than this you should manually remove them.',
+ maxBackupSizeTooltip: 'As a safeguard against misconfiguration, backups will fail if they exceed the configured size.'
}
},
watch: {
@@ -65,12 +70,6 @@ export default {
}
},
computed: {
- backupsTooltip() {
- return 'Backups saved in /metadata/backups'
- },
- maxBackupSizeTooltip() {
- return 'As a safeguard against misconfiguration, backups will fail if they exceed the configured size.'
- },
serverSettings() {
return this.$store.state.serverSettings
},