Skip to content

Commit

Permalink
Fix nullable example (#912)
Browse files Browse the repository at this point in the history
nullable only works with true/false not with single quotes
  • Loading branch information
misterboe authored Jan 17, 2024
1 parent 2f1855a commit b726784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/ColumnsConfig/Type/Link/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The migration from :php:`renderType=inputLink` to :php:`type=link` is done like
'type' => 'link',
'required' => true,
'size' => 20,
'nullable' => 'true',
'nullable' => true,
'allowedTypes' => ['page', 'url', 'record'],
'appearance' => [
'enableBrowser' => false,
Expand Down

0 comments on commit b726784

Please sign in to comment.