Skip to content

Commit

Permalink
Fix the data container definition
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhj committed Oct 31, 2022
1 parent c75dc70 commit ddcbcd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contao/dca/tl_toolbox_editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$GLOBALS['TL_DCA']['tl_toolbox_editor'] = [
// Config
'config' => [
'dataContainer' => 'Table',
'dataContainer' => \Contao\DC_Table::class,
'ctable' => ['tl_toolbox_editor_css'],
'switchToEdit' => true,
'sql' => [
Expand Down
2 changes: 1 addition & 1 deletion contao/dca/tl_toolbox_editor_css.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
$GLOBALS['TL_DCA']['tl_toolbox_editor_css'] = [
// Config
'config' => [
'dataContainer' => 'Table',
'dataContainer' => \Contao\DC_Table::class,
'ptable' => 'tl_toolbox_editor',
'switchToEdit' => true,
'enableVersioning' => true,
Expand Down

0 comments on commit ddcbcd0

Please sign in to comment.