File tree 1 file changed +3
-2
lines changed
Resources/templates/CommonAdmin/ExcelAction
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ class ExcelController extends \{{ namespace_prefix }}\{{ bundle_name }}\Controll
32
32
$this -> request = $request ;
33
33
34
34
if ($key === null ) {
35
+ $key = ' ' ;
35
36
// Standard credential check
36
37
{{ block(' security_action' ) }}
37
38
} else {
@@ -55,7 +56,7 @@ class ExcelController extends \{{ namespace_prefix }}\{{ bundle_name }}\Controll
55
56
$suffix = Inflector :: classify($key );
56
57
if (! method_exists ($this ," createSpreadsheetHeader$suffix " )) {
57
58
// back to defaults
58
- $key = null ;
59
+ $key = ' ' ;
59
60
$suffix = ' ' ;
60
61
}
61
62
@@ -100,7 +101,7 @@ class ExcelController extends \{{ namespace_prefix }}\{{ bundle_name }}\Controll
100
101
$suffix = Inflector :: classify($key );
101
102
if (! method_exists ($this ," createExcelHeader$suffix " )) {
102
103
// back to defaults
103
- $key = null ;
104
+ $key = ' ' ;
104
105
$suffix = ' ' ;
105
106
}
106
107
You can’t perform that action at this time.
0 commit comments