vue translation does not support JS logic in templates
This is anyways probably for the best
This commit is contained in:
@@ -44,7 +44,7 @@ function create() {
|
||||
};
|
||||
}));
|
||||
|
||||
for (const domain in allDomains) {
|
||||
for (const domain of allDomains) {
|
||||
const [error, result] = await domainsModel.checkRecords(domain.domain, domain.subdomain);
|
||||
if (error) return [error];
|
||||
|
||||
|
||||
@@ -107,6 +107,7 @@ function create() {
|
||||
}
|
||||
|
||||
if (error || result.status !== 200) return [error || result];
|
||||
return [null, result.body];
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user