From ec16a82ec2b002f008df176f8e522e7354f0b334 Mon Sep 17 00:00:00 2001 From: sairajzero Date: Sat, 29 May 2021 20:14:01 +0530 Subject: [PATCH] UI typo fix Changed 'bond' to 'fund' in UI --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 21a436c..55e5718 100644 --- a/index.html +++ b/index.html @@ -116,7 +116,7 @@
-

No bonds found

+

No Funds found

@@ -8306,7 +8306,7 @@ Bitcoin.Util = {
- Present bond value + Present value
@@ -10420,9 +10420,9 @@ Bitcoin.Util = { return investorInput }, fundPlaceholder(){ - const bond = document.createElement('li') - bond.classList.add('fund-placeholder', 'grid') - bond.innerHTML = ` + const fund_ph = document.createElement('li') + fund_ph.classList.add('fund-placeholder', 'grid') + fund_ph.innerHTML = `
@@ -10435,7 +10435,7 @@ Bitcoin.Util = {
` - return bond + return fund_ph } }