diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-11-06 19:04:18 -0500 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-11-06 19:04:18 -0500 |
commit | 7af9d162ab82c6e6eb38a1e3cd1b06afd884d93a (patch) | |
tree | d64eb1373318c77703df03cdcfa45f2e8ae94c98 /src/components/mao-account.js | |
parent | fd2cae2643663d67f2677da676e800fe1f91aefd (diff) |
Made multiple changes, fixing typos and a major bug with showing divisons.
Diffstat (limited to 'src/components/mao-account.js')
-rw-r--r-- | src/components/mao-account.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/mao-account.js b/src/components/mao-account.js index 3b47f66..75a54f1 100644 --- a/src/components/mao-account.js +++ b/src/components/mao-account.js @@ -190,7 +190,7 @@ class MaoAccount extends connect(store)(PageViewElement) { for(var i = 0; i < comps.length; i++) { var competitionElement = document.createElement('p'); - competitionElement.innerHTML = comps[i]; + competitionElement.innerHTML = comps[i].replace('_', ' '); competitionElement.class = "center"; mainDiv.appendChild( competitionElement); } |