diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 01:03:40 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 01:03:40 -0400 |
commit | d9d80e24ee61e279e28c028b5fc118db269e91f2 (patch) | |
tree | 0b3ecb2d7a166237bf70d68093941a31124513fb /src/components/mao-admin.js | |
parent | 30a7181224eac82731f4950dc9f64956aba45c5e (diff) |
Updated ui to display minutes instead of hours. Also, added a location field to tutoring hours request.
Diffstat (limited to 'src/components/mao-admin.js')
-rw-r--r-- | src/components/mao-admin.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/mao-admin.js b/src/components/mao-admin.js index fc67cc2..6c8a2c9 100644 --- a/src/components/mao-admin.js +++ b/src/components/mao-admin.js @@ -161,6 +161,7 @@ class MaoAdmin extends connect(store)(PageViewElement) { requestElement.email = this.requests[i].email .replace('@communityschoolnaples.org', ''); requestElement.date = this.requests[i].day; + requestElement.location = this.requests[i].location; requestElement.time = this.requests[i].time; requestElement.trainee = this.requests[i].trainee; requestElement.uid = this.requests[i].uid; |