diff options
| author | Shulhan <ms@kilabit.info> | 2022-05-16 01:59:38 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-05-16 01:59:38 +0700 |
| commit | 96a9c80e4d25ececac88879178a6acf146608546 (patch) | |
| tree | d6b834c019cd11fc4363f1c4cabda763407559af /_www/zone.d/index.html | |
| parent | f21e7c468c4d4479919c4a483451c6672698ab0a (diff) | |
| download | rescached-96a9c80e4d25ececac88879178a6acf146608546.tar.xz | |
go.mod: update share module
The latest changes on share module changes type Zone.SOA field type,
which affect the zone.d page.
Diffstat (limited to '_www/zone.d/index.html')
| -rw-r--r-- | _www/zone.d/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_www/zone.d/index.html b/_www/zone.d/index.html index bb733e8..dd4ea7c 100644 --- a/_www/zone.d/index.html +++ b/_www/zone.d/index.html @@ -441,7 +441,7 @@ function renderActiveZoneSOA() { const w = document.getElementById("activeZone_soa") w.style.display = "block" - const soa = activeZone.SOA.Value + const soa = activeZone.SOA document.getElementById("soa_mname").value = soa.MName document.getElementById("soa_rname").value = soa.RName document.getElementById("soa_serial").value = soa.Serial |
