diff --git a/modules/paragraphs_type_permissions/src/Tests/ParagraphsTypePermissionsTest.php b/modules/paragraphs_type_permissions/src/Tests/ParagraphsTypePermissionsTest.php
index 744af69..ba4a19e 100644
--- a/modules/paragraphs_type_permissions/src/Tests/ParagraphsTypePermissionsTest.php
+++ b/modules/paragraphs_type_permissions/src/Tests/ParagraphsTypePermissionsTest.php
@@ -253,6 +253,17 @@ class ParagraphsTypePermissionsTest extends WebTestBase {
     $this->assertText('Published');
     $this->assertText('Images');
     $this->assertText('You are not allowed to edit or remove this Paragraph.');
+    $this->assertRaw('paragraphs-collapsed-description"><div class="paragraphs-content-wrapper"><span class="summary-content">image-test_0.png<');
+    $this->assertNoRaw('paragraphs-collapsed-description"><div class="paragraphs-content-wrapper"><span class="summary-content">Paragraph type Text<');
+
+    // Check that the paragraph is collapsed by asserting the content summary.
+    $authenticated_role->grantPermission('view paragraph content text');
+    $authenticated_role->save();
+    $this->drupalLogin($authenticated_user);
+    $this->drupalGet('node/' . $node->id() . '/edit');
+    $this->assertText('You are not allowed to edit or remove this Paragraph.');
+    $this->assertRaw('paragraphs-collapsed-description"><div class="paragraphs-content-wrapper"><span class="summary-content">image-test_0.png<');
+    $this->assertRaw('paragraphs-collapsed-description"><div class="paragraphs-content-wrapper"><span class="summary-content">Paragraph type Text<');
   }
 
 }
diff --git a/src/Plugin/Field/FieldWidget/ParagraphsWidget.php b/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
index 7f615be..2fb2de5 100644
--- a/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
+++ b/src/Plugin/Field/FieldWidget/ParagraphsWidget.php
@@ -603,6 +603,11 @@ class ParagraphsWidget extends WidgetBase {
           '#access' => $this->duplicateButtonAccess($paragraphs_entity),
         ];
 
+        // Force the closed mode when the user cannot edit the Paragraph.
+        if (!$paragraphs_entity->access('update')) {
+          $item_mode = 'closed';
+        }
+
         if ($item_mode != 'remove') {
           $widget_actions['dropdown_actions']['remove_button'] = [
             '#type' => 'submit',
