diff --git a/core/modules/image/lib/Drupal/image/ImageStyleListController.php b/core/modules/image/lib/Drupal/image/ImageStyleListController.php index 9051d5d..6e6ea67 100644 --- a/core/modules/image/lib/Drupal/image/ImageStyleListController.php +++ b/core/modules/image/lib/Drupal/image/ImageStyleListController.php @@ -30,6 +30,8 @@ public function buildHeader() { public function buildRow(EntityInterface $entity) { $row = parent::buildRow($entity); unset($row['id']); + $uri = $entity->uri(); + $row['label'] = l($entity->label(), $uri['path'], $uri['options']); return $row; }