Completed
Push — 8.x-1.x ( 802e84...bea2b9 )
by Janez
02:44
created
media.module 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 /**
28 28
  * Implements hook_form_alter().
29 29
  */
30
-function media_form_alter(&$form, FormStateInterface &$form_state) {
30
+function media_form_alter(&$form, FormStateInterface & $form_state) {
31 31
   if (isset($form['#form_id'])) {
32 32
     if ($form['#form_id'] == 'entity_browser_media_library_form') {
33 33
       // Attach our library.
Please login to merge, or discard this patch.
src/Tests/GalleryBundleTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     $this->drupalGet('media/add/gallery');
104 104
     $edit = [
105 105
       'name[0][value]' => 'Gallery item 2',
106
-      'field_slide[target_id]' => $videoItem['id'] . ' ' . $imageItem['id'] ,
106
+      'field_slide[target_id]' => $videoItem['id'] . ' ' . $imageItem['id'],
107 107
       'field_slide[entity_browser][path]' => $pathValue,
108 108
     ];
109 109
     $this->drupalPostForm(NULL, $edit, t('Save and publish'));
Please login to merge, or discard this patch.