Skip to content

Commit

Permalink
Merge pull request #36 from bolt/fix/allow-twig
Browse files Browse the repository at this point in the history
Allow Article field to allow_twig: true
  • Loading branch information
bobdenotter authored Dec 16, 2021
2 parents 02fa7bc + be8e40c commit 670fcd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/ArticleField.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ArticleField extends Field implements Excerptable, FieldInterface
*/
public function getTwigValue()
{
$value = $this->getParsedValue();
$value = parent::getTwigValue();

return new Markup($value, 'UTF-8');
}
Expand Down

0 comments on commit 670fcd8

Please sign in to comment.