Skip to content

Commit

Permalink
Fix select field default value
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey900 committed Sep 16, 2017
1 parent 0f7b7e7 commit 4f0f1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Source/ModelFieldBuilder/SelectField.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class SelectField extends AField
{
protected $allowTypes = ['select', 'multiselect'];
protected $defaultType = 'select';
public $values = ['0'=>"Выбирите значение"];
public $values = ['0'=>"Change..."];
public $size = 5;
public $multiple = false;
public $default = 0;
Expand Down

0 comments on commit 4f0f1b9

Please sign in to comment.