mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
webadmin: remove stray text "pre" in on the "required dns records" page
This commit is contained in:
parent
9bab3124f6
commit
fdcd2eb0eb
2 changed files with 2 additions and 2 deletions
|
@ -2580,7 +2580,7 @@ const domainDNSRecords = async (d) => {
|
||||||
client.DomainRecords(d),
|
client.DomainRecords(d),
|
||||||
client.ParseDomain(d),
|
client.ParseDomain(d),
|
||||||
]);
|
]);
|
||||||
dom._kids(page, crumbs(crumblink('Mox Admin', '#'), crumblink('Domain ' + domainString(dnsdomain), '#domains/' + d), 'DNS Records'), dom.h1('Required DNS records'), dom.pre('pre', dom._class('literal'), (records || []).join('\n')), dom.br());
|
dom._kids(page, crumbs(crumblink('Mox Admin', '#'), crumblink('Domain ' + domainString(dnsdomain), '#domains/' + d), 'DNS Records'), dom.h1('Required DNS records'), dom.pre(dom._class('literal'), (records || []).join('\n')), dom.br());
|
||||||
};
|
};
|
||||||
const domainDNSCheck = async (d) => {
|
const domainDNSCheck = async (d) => {
|
||||||
const [checks, dnsdomain] = await Promise.all([
|
const [checks, dnsdomain] = await Promise.all([
|
||||||
|
|
|
@ -1906,7 +1906,7 @@ const domainDNSRecords = async (d: string) => {
|
||||||
'DNS Records',
|
'DNS Records',
|
||||||
),
|
),
|
||||||
dom.h1('Required DNS records'),
|
dom.h1('Required DNS records'),
|
||||||
dom.pre('pre', dom._class('literal'), (records || []).join('\n')),
|
dom.pre(dom._class('literal'), (records || []).join('\n')),
|
||||||
dom.br(),
|
dom.br(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue