Skip to content

Commit

Permalink
Add missing field and column for review status
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Castillo <[email protected]>
  • Loading branch information
tomrndom committed Dec 9, 2024
1 parent a3b887e commit 5ff59cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/event-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export const getEvents =
relations:
"none,speakers.none,selection_plan.none,track.none,type.none,created_by.none,location.none,media_uploads.media_upload_type.none",
fields:
"id,created,last_edited,title,start_date,end_date,summit_id,duration,class_name,is_published,level,published_date,meeting_url,status,progress,selection_status,streaming_url,streaming_type,etherpad_link,location.id,location.name,speakers.id,speakers.first_name,speakers.last_name,speakers.company,track.name,track.id,created_by.first_name,created_by.last_name,created_by.email,created_by.company,selection_plan.name,selection_plan.id,media_uploads.id,media_uploads.created,media_uploads.class_name,media_uploads.display_on_site,media_uploads.media_upload_type.name,media_uploads.media_upload_type.id,type.id,type.name,sponsors.id,sponsors.name,allow_feedback,to_record",
"id,created,last_edited,title,start_date,end_date,summit_id,duration,class_name,is_published,level,published_date,meeting_url,status,progress,selection_status,streaming_url,streaming_type,etherpad_link,location.id,location.name,speakers.id,speakers.first_name,speakers.last_name,speakers.company,track.name,track.id,created_by.first_name,created_by.last_name,created_by.email,created_by.company,selection_plan.name,selection_plan.id,media_uploads.id,media_uploads.created,media_uploads.class_name,media_uploads.display_on_site,media_uploads.media_upload_type.name,media_uploads.media_upload_type.id,type.id,type.name,sponsors.id,sponsors.name,allow_feedback,to_record,review_status",
page,
per_page: perPage,
access_token: accessToken
Expand Down
6 changes: 6 additions & 0 deletions src/pages/events/summit-event-list-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,12 @@ const fieldNames = (selection_plans_ddl, track_ddl, event_types) => [
editableField: true
},
{ columnKey: "streaming_type", value: "streaming_type", sortable: true },
{
columnKey: "review_status",
value: "review_status",
sortable: false,
title: true
},
{
columnKey: "status",
value: "submission_status",
Expand Down

0 comments on commit 5ff59cc

Please sign in to comment.