diff --git a/core/modules/media/templates/media.html.twig b/core/modules/media/templates/media.html.twig index 28c0a83..32cdb0f 100644 --- a/core/modules/media/templates/media.html.twig +++ b/core/modules/media/templates/media.html.twig @@ -32,5 +32,6 @@ */ #} + {{ title_suffix }} {{ content }} diff --git a/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php b/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php new file mode 100644 index 0000000..1d97773 --- /dev/null +++ b/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php @@ -0,0 +1,45 @@ +createMediaType(); + + // Create a media item. + $media = Media::create([ + 'bundle' => $mediaType->id(), + 'name' => 'Unnamed', + ]); + $media->save(); + + $user = $this->drupalCreateUser([ + 'administer media', + 'access contextual links', + ]); + $this->drupalLogin($user); + + $this->drupalGet('media/' . $media->id()); + $this->assertSession()->elementAttributeContains('css', 'div[data-contextual-id]', 'data-contextual-id', 'media:media=' . $media->id() . ':'); + } + +} diff --git a/core/themes/classy/templates/content/media.html.twig b/core/themes/classy/templates/content/media.html.twig index f36975c..cb65943 100644 --- a/core/themes/classy/templates/content/media.html.twig +++ b/core/themes/classy/templates/content/media.html.twig @@ -21,6 +21,7 @@ ] %} + {{ title_suffix }} {% if content %} {{ content }} {% endif %} diff --git a/core/themes/stable/templates/content/media.html.twig b/core/themes/stable/templates/content/media.html.twig index 769b7be..58732de 100644 --- a/core/themes/stable/templates/content/media.html.twig +++ b/core/themes/stable/templates/content/media.html.twig @@ -13,6 +13,7 @@ */ #} + {{ title_suffix }} {% if content %} {{ content }} {% endif %}