mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
fix formatting of multiple ptr host names in admin dns check page
from mteege, thanks!
This commit is contained in:
parent
6abee87aa3
commit
286411cf82
1 changed files with 1 additions and 1 deletions
|
@ -874,7 +874,7 @@ const domainDNSCheck = async (d) => {
|
|||
dom.table(
|
||||
dom.tr(dom.th('IP'), dom.th('Addresses')),
|
||||
Object.entries(checks.IPRev.IPNames).sort().map(t =>
|
||||
dom.tr(dom.td(t[0]), dom.td(t[1])),
|
||||
dom.tr(dom.td(t[0]), dom.td((t[1] || []).join(', '))),
|
||||
)
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue