Skip to content

Commit

Permalink
fix(article-form): Fix form element type for content
Browse files Browse the repository at this point in the history
  • Loading branch information
Yousef Chanan committed Jun 23, 2016
1 parent b755665 commit c4bde9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Form/Type/ArticleTranslationType.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'attr' => ['rows' => 4]
]);

$builder->add('content', 'text', [
$builder->add('content', 'textarea', [
'label' => 'webburza.sylius.article.label.content',
'attr' => ['class' => 'ckeditor']
]);
Expand Down

0 comments on commit c4bde9e

Please sign in to comment.