From 2309d40098730419445c3c8c99cfacd06b8d4777 Mon Sep 17 00:00:00 2001 From: "YUKI \"Piro\" Hiroshi" Date: Wed, 16 Oct 2024 16:51:11 +0900 Subject: [PATCH] Fix mismatched variable name --- src/web/added-domains-reconfirmation.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/added-domains-reconfirmation.mjs b/src/web/added-domains-reconfirmation.mjs index bd46d87..cc95db6 100644 --- a/src/web/added-domains-reconfirmation.mjs +++ b/src/web/added-domains-reconfirmation.mjs @@ -37,8 +37,8 @@ export class AddedDomainsReconfirmation { initUI(sendStatusToParent) { const targetElement = $("#newly-added-domain-address-list"); for (const address of this.newDomainAddresses) { - const divElement = $(`
  • `).appendTo(targetElement); - const strongElement = $(``).appendTo(divElement); + const itemElement = $(`
  • `).appendTo(targetElement); + const strongElement = $(``).appendTo(itemElement); strongElement.text(address); } window.onSendNewDomain = () => {