diff --git a/src/ScheduledUpdateListBuilder.php b/src/ScheduledUpdateListBuilder.php
index 6ab258d..d3f894e 100644
--- a/src/ScheduledUpdateListBuilder.php
+++ b/src/ScheduledUpdateListBuilder.php
@@ -15,6 +15,7 @@
 use Drupal\Core\Entity\EntityTypeInterface;
 use Drupal\Core\Routing\LinkGeneratorTrait;
 use Drupal\Core\Url;
+use Drupal\scheduled_updates\Entity\ScheduledUpdateType;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -64,6 +65,7 @@ public function __construct(EntityTypeInterface $entity_type, EntityStorageInter
    */
   public function buildHeader() {
     $header['name'] = $this->t('Update Time');
+    $header['entities'] = $this->t('Target Updates');
     $header['type'] = $this->t('Update Type');
     return $header + parent::buildHeader();
   }
@@ -81,7 +83,27 @@ public function buildRow(EntityInterface $entity) {
         )
       )
     );
-
+    $type = $this->updateUtils->getUpdateType($entity);
+    $target_type = $type->getUpdateEntityType();
+    $runner = \Drupal::service('scheduled_updates.update_runner')->getUpdateRunnerInstance($type);
+    $target_fields = $runner->getReferencingFieldIds();
+    $target_field = reset($target_fields);
+    $revisions = \Drupal::entityQuery($target_type)->allRevisions()->condition($target_field . '.target_id', $entity->id())->execute();
+    $entities = [];
+    foreach (array_keys($revisions) as $revision_id) {
+      $entities[] = \Drupal::entityTypeManager()
+        ->getStorage($target_type)
+        ->loadRevision($revision_id);
+    }
+    $row['entities'] = [
+      'data' => [
+        '#theme' => 'item_list',
+        '#context' => ['list_style' => 'comma-list'],
+        '#items' => array_map(function (EntityInterface $entity) {
+          return $entity->toLink($entity->label(), 'latest-version');
+        }, $entities),
+      ]
+    ];
     $row['type'] = $this->updateUtils->getUpdateTypeLabel($entity);
     return $row + parent::buildRow($entity);
   }
