diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-13 16:47:34 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-13 16:47:34 -0400 |
commit | 717352f8653a71eba003ec33dfa6355463208045 (patch) | |
tree | 62ec6ae72a58d4ab80565e2f4b9cf6b20fb9654f /src/components/mao-admin.js | |
parent | 3c96bc3f51a97b13c76db305502436d54cc35a6b (diff) |
Now deletes img from storage after use. Done with basic img backend stuff.
Diffstat (limited to 'src/components/mao-admin.js')
-rw-r--r-- | src/components/mao-admin.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/mao-admin.js b/src/components/mao-admin.js index ffdcb19..7047cab 100644 --- a/src/components/mao-admin.js +++ b/src/components/mao-admin.js @@ -168,7 +168,8 @@ class MaoAdmin extends connect(store)(PageViewElement) { requestElement.subject = this.requests[i].subject; requestElement.uid = this.requests[i].uid; requestElement.docId = this.requests[i].docId; - requestElement.imgPath = this.requests[i].imgPath; + requestElement.imgUrl = this.requests[i].imgUrl; + requestElement.imgPath = this.requests[i].path; requestGrid.appendChild(requestElement); } |