Ensure new alias and redirect domain values are prefilled

This commit is contained in:
Johannes Zellner
2025-04-28 15:59:24 +02:00
parent 384e341452
commit 4d8f8f19d4
2 changed files with 2 additions and 5 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ function isNoopOrManual(domain) {
function onAddAlias() {
aliases.value.push({
domain: '',
domain: domains.value[0].domain,
subdomain: ''
});
}
@@ -47,7 +47,7 @@ function onRemoveAlias(index) {
function onAddRedirect() {
redirects.value.push({
domain: '',
domain: domains.value[0].domain,
subdomain: ''
});
}