Skip to content
Snippets Groups Projects
Verified Commit ba03fcb3 authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Add missing row, because gridelements complains with a warning

parent 8626e205
No related branches found
No related tags found
1 merge request!48[TASK] Require TYPO3 12
...@@ -66,7 +66,8 @@ class PreviewService { ...@@ -66,7 +66,8 @@ class PreviewService {
$row['pid'], $row['pid'],
'tt_content', 'tt_content',
'list_type', 'list_type',
$row['list_type'] $row['list_type'],
$row
)); ));
return $view; return $view;
} }
...@@ -123,7 +124,8 @@ class PreviewService { ...@@ -123,7 +124,8 @@ class PreviewService {
$row['pid'], $row['pid'],
'tt_content', 'tt_content',
'list_type', 'list_type',
$row['list_type'] $row['list_type'],
$row
)); ));
return $view; return $view;
} }
...@@ -162,7 +164,8 @@ class PreviewService { ...@@ -162,7 +164,8 @@ class PreviewService {
$row['pid'], $row['pid'],
'tt_content', 'tt_content',
'list_type', 'list_type',
$row['list_type'] $row['list_type'],
$row
)); ));
return $view; return $view;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment