diff --git a/src/ModerationStateTransitionListBuilder.php b/src/ModerationStateTransitionListBuilder.php
index 98419cb..2cd2b1f 100644
--- a/src/ModerationStateTransitionListBuilder.php
+++ b/src/ModerationStateTransitionListBuilder.php
@@ -65,10 +65,12 @@ class ModerationStateTransitionListBuilder extends DraggableListBuilder {
   public function buildRow(EntityInterface $entity) {
     /** @var ModerationStateTransitionInterface $entity */
 
+    $from_state = $this->stateStorage->load($entity->getFromState());
+    $to_state = $this->stateStorage->load($entity->getToState());
     $row['label'] = $entity->label();
     $row['id']['#markup'] = $entity->id();
-    $row['from']['#markup'] = $this->stateStorage->load($entity->getFromState())->label();
-    $row['to']['#markup'] = $this->stateStorage->load($entity->getToState())->label();
+    $row['from']['#markup'] = $this->t('@label (%id)', ['@label' => $from_state->label(), '%id' => $from_state->id()]);
+    $row['to']['#markup'] = $this->t('@label (%id)', ['@label' => $to_state->label(), '%id' => $to_state->id()]);
 
     return $row + parent::buildRow($entity);
   }
