diff --git a/core/modules/content_moderation/src/Plugin/views/filter/ModerationStateFilter.php b/core/modules/content_moderation/src/Plugin/views/filter/ModerationStateFilter.php index 0d44883..8541609 100644 --- a/core/modules/content_moderation/src/Plugin/views/filter/ModerationStateFilter.php +++ b/core/modules/content_moderation/src/Plugin/views/filter/ModerationStateFilter.php @@ -133,7 +133,11 @@ protected function opSimple() { * {@inheritdoc} */ public function calculateDependencies() { - // @todo calculate dependencies in https://www.drupal.org/node/2901690. + // Do not depend on the workflows which provide states that are utilised + // in the filter. States cannot be depended on directly and can also be + // common across multiple workflows. States and workflows with existing + // content cannot be deleted, so the impact of not depending on them here is + // mitigated. return parent::calculateDependencies(); }