diff --git a/app/src/i18n/locales/en.json b/app/src/i18n/locales/en.json index 7fedf45f..4ea3c5c5 100644 --- a/app/src/i18n/locales/en.json +++ b/app/src/i18n/locales/en.json @@ -140,6 +140,7 @@ "auto_config": "Automatic DNS records configuration", "auto_config_ignored": "ignored, won't be changed by Yunohost unless you check the overwrite option", "auto_config_ok": "Automatic configuration seems to be OK!", + "auto_config_zone": "Current DNS zone", "edit": "Edit DNS configuration", "info": "The automatic DNS records configuration is an experimental feature.
Consider saving your current DNS zone from your DNS registrar's interface before pushing records from here.", "manual_config": "Suggested DNS records for manual configuration", diff --git a/app/src/views/domain/DomainDns.vue b/app/src/views/domain/DomainDns.vue index 1db0c743..816e5ee7 100644 --- a/app/src/views/domain/DomainDns.vue +++ b/app/src/views/domain/DomainDns.vue @@ -63,6 +63,20 @@ + + +
+
+ {{ record }} + {{ type }}{{ spaces }} + {{ content }} +
+
+
+ { + record.name = record.name + ' '.repeat(longestName - record.name.length + 1) + record.spaces = ' '.repeat(longestType - record.type.length + 1) + }) + this.dnsZone = unchanged + } + this.dnsChanges = changes.length > 0 ? changes : null this.force = canForce ? false : null this.loading = false