diff --git a/app/modules/cupang/templates/cupang/index.html b/app/modules/cupang/templates/cupang/index.html index 1ed4065..544358c 100644 --- a/app/modules/cupang/templates/cupang/index.html +++ b/app/modules/cupang/templates/cupang/index.html @@ -109,7 +109,7 @@ var d1 = document.createElement("div"); d1.className = "cpg-tip-row"; var n = document.createElement("span"); n.className = "cpg-tip-name"; n.textContent = it.name || ""; - var q = document.createElement("span"); q.className = "cpg-tip-qty"; q.textContent = (it.qty != null ? it.qty : 0); + var q = document.createElement("span"); q.className = "cpg-tip-qty"; q.textContent = (it.qty != null ? it.qty : 0) + "개"; d1.appendChild(n); d1.appendChild(q); html += d1.outerHTML; });