diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-07-30 21:19:35 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-07-30 21:19:35 -0400 |
commit | 0faad7fc879de9de6200526afe8a4419022eaaa3 (patch) | |
tree | 944ced3dc2c37b80aed7ca0dd7d47b9af83698a7 /src/components/mao-fourms.js | |
parent | 936bbaa65fcb34c415991af95984b6b174f974b8 (diff) |
Added a quick change to diplay email instead of uid. Also, changed a few small things on mao-tutoring.js
Diffstat (limited to 'src/components/mao-fourms.js')
-rw-r--r-- | src/components/mao-fourms.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/mao-fourms.js b/src/components/mao-fourms.js index cb7095b..78f0192 100644 --- a/src/components/mao-fourms.js +++ b/src/components/mao-fourms.js @@ -177,7 +177,7 @@ class MaoFourms extends connect(store)(PageViewElement) { var fourmSubject = document.createElement('h3'); var fourmContent = document.createElement('p'); - fourmAuthor.innerHTML = this.fourmPosts[i].uid; + fourmAuthor.innerHTML = this.fourmPosts[i].email .replace('@communityschoolnaples.org', ''); fourmSubject.innerHTML = this.fourmPosts[i].subject; fourmContent.innerHTML = this.fourmPosts[i].content; |