Completed
Pull Request — development (#850)
by
unknown
01:04
created
htdocs_symfony/src/Form/SupportImportGPX.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@  discard block
 block discarded – undo
27 27
                                 ],
28 28
                                 'constraints' => [
29 29
                                     new File([
30
-                                                 'maxSize' => '20480000',
31
-                                                 'mimeTypes' => [
32
-                                                     'application/gpx+xml',
33
-                                                     'application/xml',
34
-                                                     'text/xml',
35
-                                                 ],
36
-                                                 'mimeTypesMessage' => 'Please upload a valid GPX/XML document',
37
-                                             ])
30
+                                                    'maxSize' => '20480000',
31
+                                                    'mimeTypes' => [
32
+                                                        'application/gpx+xml',
33
+                                                        'application/xml',
34
+                                                        'text/xml',
35
+                                                    ],
36
+                                                    'mimeTypesMessage' => 'Please upload a valid GPX/XML document',
37
+                                                ])
38 38
                                 ],
39 39
                                 'multiple' => false,
40 40
                                 'required' => true,
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
             )
46 46
             ->add(
47 47
                 'start_upload', SubmitType::class, [
48
-                                  'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 100px;'],
49
-                                  'label' => '
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/RolesSearchUser.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@
 block discarded – undo
20 20
         $builder
21 21
             ->add(
22 22
                 'content_user_searchfield', null, [
23
-                                                 'attr' => [
24
-                                                     'placeholder' => 'User-Id',
25
-                                                     'autofocus' => 'autofocus',
26
-                                                     'size' => '10%',
27
-                                                     'minlength' => '6',
28
-                                                     'maxlength' => '7',
29
-                                                     'style' => 'width: 250px;',
30
-                                                     'pattern' => '^[0-9]{6,7}',
31
-                                                     'title' => 'Only 6-7 numerics are allowed.',
32
-                                                 ],
33
-                                                 'required' => true,
34
-                                                 'disabled' => false,
35
-                                                 'label' => false,
36
-                                                 'trim' => true
37
-                                             ]
23
+                                                    'attr' => [
24
+                                                        'placeholder' => 'User-Id',
25
+                                                        'autofocus' => 'autofocus',
26
+                                                        'size' => '10%',
27
+                                                        'minlength' => '6',
28
+                                                        'maxlength' => '7',
29
+                                                        'style' => 'width: 250px;',
30
+                                                        'pattern' => '^[0-9]{6,7}',
31
+                                                        'title' => 'Only 6-7 numerics are allowed.',
32
+                                                    ],
33
+                                                    'required' => true,
34
+                                                    'disabled' => false,
35
+                                                    'label' => false,
36
+                                                    'trim' => true
37
+                                                ]
38 38
             )
39 39
             ->add(
40 40
                 'search_One', SubmitType::class, [
Please login to merge, or discard this patch.