FIX Prevent FormField::Type() from adding "tag" class to TagField

This commit is contained in:
Robbie Averill 2018-11-15 21:23:22 +02:00
parent 02c646a0ee
commit 3ce41f60ec

View File

@ -450,4 +450,14 @@ class TagField extends DropdownField
$copy->setSourceList($this->getSourceList());
return $copy;
}
/**
* Prevent the default, which would return "tag"
*
* @return string
*/
public function Type()
{
return '';
}
}