Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Dropdown, Autocomplete and Lookup empty value to Unicode NBSP #927

Merged
merged 1 commit into from
Feb 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/FormField/AutoComplete.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AutoComplete extends Input
*
* @var string
*/
public $empty = '...';
public $empty = "\u{00a0}"; // Unicode NBSP

/**
* Either set this to array of fields which must be searched (e.g. "name", "surname"), or define this
Expand Down
2 changes: 1 addition & 1 deletion src/FormField/DropDown.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DropDown extends Input
*
* @var string
*/
public $empty = '...';
public $empty = "\u{00a0}"; // Unicode NBSP

/**
* The html template associate whit this dropdown.
Expand Down
2 changes: 1 addition & 1 deletion src/FormField/Lookup.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Lookup extends Input
*
* @var string
*/
public $empty = '...';
public $empty = "\u{00a0}"; // Unicode NBSP

/**
* Either set this to array of fields which must be searched (e.g. "name", "surname"), or define this
Expand Down