Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…t-Portal into integ
  • Loading branch information
VishalS99 committed Oct 22, 2020
2 parents d0877b1 + de6176c commit f1466d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Binary file added public/public/bonafide-new.pdf
Binary file not shown.
14 changes: 12 additions & 2 deletions public/src/admin/admin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ function Admin() {
});
res.data.forEach((t) => {
if (t.status === "APPROVED") {
comment_list.push(t.path_email + " - " + t.comments + "\n");
approval_list.push(t.path_email);
comment_list.push(t.comments);
// comment_list.push(t.comments);
}
});
temp[i].approved = approval_list;
Expand Down Expand Up @@ -424,7 +425,16 @@ function Admin() {
<td>
{data.comments &&
data.comments.length
? data.comments
? data.comments.map(
(ele) => {
return (
<>
{ele}
<br />
</>
);
}
)
: "-"}
</td>

Expand Down

0 comments on commit f1466d8

Please sign in to comment.