Skip to content

Commit

Permalink
Merge pull request #424 from erangaddd/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkleiner authored Dec 15, 2023
2 parents ea47bc5 + 844f475 commit 43033f5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\FormAction;
use SilverStripe\Forms\TextField;
use SilverStripe\Forms\TextareaField;

class ContactPageController extends PageController
{
Expand All @@ -40,7 +41,7 @@ class ContactPageController extends PageController
$fields = FieldList::create(
TextField::create('Name'),
EmailField::create('Email'),
extareaField::create('Message')
TextareaField::create('Message')
);

$actions = FieldList::create(
Expand Down

0 comments on commit 43033f5

Please sign in to comment.