Skip to content

Commit

Permalink
Merge pull request #647 from mahajanmahesh935/category
Browse files Browse the repository at this point in the history
TASK : #0000 Changed Keywords for eventOrganisedBy and IssueCerificate
  • Loading branch information
paritshivani authored Sep 25, 2024
2 parents a7dc8de + 908a0dc commit 1aee420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nulp_elite/src/pages/events/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,8 @@ const Dashboard = () => {
<TableCell align="center">
{event.totalParticipants}
</TableCell>
<TableCell align="center">{event.IssueCerificate}</TableCell>
<TableCell align="center">{event.EventOrganisedby}</TableCell>
<TableCell align="center">{event.IssueCerificate || event.issueCerificate}</TableCell>
<TableCell align="center">{event.EventOrganisedby || event.eventOrganisedBy}</TableCell>
<TableCell align="center">
<FileDownloadOutlinedIcon
onClick={() => handleDownloadClick(event.identifier)}
Expand Down
2 changes: 1 addition & 1 deletion packages/nulp_elite/src/pages/events/eventDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ const formatTimeWithTimezone = (date) => {
<Box className="d-flex alignItems-center pl-20">
<Box className="event-text-circle"></Box>
<Box className="h5-title">
{detailData.eventOrganisedby}
{detailData.eventOrganisedBy || detailData.eventOrganisedby}
</Box>
</Box>
</Box>
Expand Down

0 comments on commit 1aee420

Please sign in to comment.