diff --git a/core/lib/Drupal/Core/Entity/EntityListController.php b/core/lib/Drupal/Core/Entity/EntityListController.php
index 246b73a..af0d529 100644
--- a/core/lib/Drupal/Core/Entity/EntityListController.php
+++ b/core/lib/Drupal/Core/Entity/EntityListController.php
@@ -148,6 +148,7 @@ public function getOperations(EntityInterface $entity) {
    * @see Drupal\Core\Entity\EntityListController::render()
    */
   public function buildHeader() {
+    $row['label'] = t('Label');
     $row['operations'] = t('Operations');
     return $row;
   }
@@ -164,6 +165,7 @@ public function buildHeader() {
    * @see Drupal\Core\Entity\EntityListController::render()
    */
   public function buildRow(EntityInterface $entity) {
+    $row['label'] = $this->getLabel($entity);
     $row['operations']['data'] = $this->buildOperations($entity);
     return $row;
   }
