- Issue created by @acbramley
- 🇦🇺Australia acbramley
Can easily be done in a query alter
/** * Implements hook_query_TAG_alter(). * * @see \Drupal\scheduled_transitions\ScheduledTransitionsUtility::QUERY_TAG_TARGET_REVISIONS */ #[Alter('query_scheduled_transitions_target_revisions')] public function queryScheduledTransitionsTargetRevisionsAlter(AlterableInterface $query): void { assert($query instanceof SelectInterface); $query->range(0, 50); }
- Status changed to Closed: duplicate
almost 2 years ago 3:34am 27 July 2023 - 🇦🇺Australia dpi Perth, Australia
Marking as duplicate of ✨ Add pagination to target revision candidates list Needs work
The solution above is a good workaround, as referenced by comment 2 above: #3189164: Allow target revision candidates for transition to be altered →