diff --git a/src/Controller/PluginRevisionController.php b/src/Controller/PluginRevisionController.php
index 7b6a53d..02596a7 100644
--- a/src/Controller/PluginRevisionController.php
+++ b/src/Controller/PluginRevisionController.php
@@ -171,6 +171,14 @@ class PluginRevisionController extends ControllerBase {
       }
     }
 
+    $build['back_link'] = [
+      '#title' => $this->t('Back to overview'),
+      '#type' => 'link',
+      '#url' => Url::fromRoute('entity.' . $entity_type_id . '.version_history', [$entity_type_id => $entity->id()]),
+      '#weight' => 10,
+      '#attributes' => ['class' => ['button']],
+    ];
+
     $build['#attached']['library'][] = 'diff/diff.general';
     return $build;
   }
