N°2974 - Fix Global Search doesn't search in external field

The IsSearchable() check was wrong for some attributes
This commit is contained in:
Eric
2020-05-04 11:40:02 +02:00
parent 96d888fcf3
commit 843798505a

View File

@@ -156,7 +156,7 @@ abstract class AttributeDefinition
*/
public function IsSearchable()
{
return static::SEARCH_WIDGET_TYPE != static::SEARCH_WIDGET_TYPE_RAW;
return $this->GetSearchType() != static::SEARCH_WIDGET_TYPE_RAW;
}
/** @var string */