mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUG Remove bad default when scaffolding form field for DBHTMLVarchar
This commit is contained in:
parent
8219491705
commit
8d69cf9f75
@ -124,7 +124,7 @@ class DBHTMLVarchar extends DBVarchar
|
|||||||
|
|
||||||
public function scaffoldFormField($title = null, $params = null)
|
public function scaffoldFormField($title = null, $params = null)
|
||||||
{
|
{
|
||||||
return HTMLEditorField::create($this->name, $title, 1);
|
return HTMLEditorField::create($this->name, $title)->setRows(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function scaffoldSearchField($title = null)
|
public function scaffoldSearchField($title = null)
|
||||||
|
Loading…
Reference in New Issue
Block a user