Skip to content

Commit

Permalink
Change default value of a hidden field from true to false
Browse files Browse the repository at this point in the history
  • Loading branch information
coastforge-rro committed Oct 4, 2019
1 parent ab8ee67 commit 4c62275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/contao/dca/tl_c4g_visualization_chart.php
Expand Up @@ -96,7 +96,7 @@
$yLabelPosition->eval()->class('w50');

$y2Show = new CheckboxField('y2show', $dca);
$y2Show->default(true);
$y2Show->default(false);
$y2Inverted = new CheckboxField('y2Inverted', $dca);
$y2LabelText = new TextField('y2Labeltext', $dca);
$y2LabelText->eval()->class('w50');
Expand Down

0 comments on commit 4c62275

Please sign in to comment.