Skip to content
Snippets Groups Projects
Commit 763667b9 authored by Owen Bush's avatar Owen Bush Committed by Owen Bush
Browse files

Issue #3160681 by owenbush, the_glitch: Error if sorting is attempted on...

Issue #3160681 by owenbush, the_glitch: Error if sorting is attempted on 'Series Starts' column in Event Series admin view
parent c8e52b87
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ function recurring_events_registration_views_data_alter(array &$data) {
'help' => t('The number of registration spaces available for an event instance.'),
'field' => 'event_registration__capacity',
'id' => 'eventinstance_registration_availability',
'click sortable' => FALSE,
],
'filter' => [
'title' => t('Registration Availability'),
......@@ -34,6 +35,7 @@ function recurring_events_registration_views_data_alter(array &$data) {
'title' => t('Capacity'),
'help' => t('The number of registration spaces available for an event instance'),
'id' => 'eventinstance_capacity',
'click sortable' => FALSE,
],
];
......@@ -43,6 +45,7 @@ function recurring_events_registration_views_data_alter(array &$data) {
'title' => t('Registration Count'),
'help' => t('The number of registrations for an event instance.'),
'id' => 'eventinstance_registration_count',
'click sortable' => FALSE,
],
];
......@@ -52,6 +55,7 @@ function recurring_events_registration_views_data_alter(array &$data) {
'title' => t('Waitlist Count'),
'help' => t('The number of waitlisted registrants for an event instance.'),
'id' => 'eventinstance_waitlist_count',
'click sortable' => FALSE,
],
];
......
......@@ -16,6 +16,7 @@ function recurring_events_views_data_alter(array &$data) {
'title' => t('Event series instance count'),
'help' => t('The number of event instances in a series.'),
'id' => 'eventseries_instance_count',
'click sortable' => FALSE,
],
];
......@@ -26,6 +27,7 @@ function recurring_events_views_data_alter(array &$data) {
'title' => t('Event series start date'),
'help' => t('The date on which an event first occurs.'),
'id' => 'eventseries_start_date',
'click sortable' => FALSE,
],
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment