- πΊπΈUnited States dcam
The code altered by this patch has changed. If the inherent issue still exists, then feel free to re-open the issue and update the version number.
When the FullCalendar view looks at fields to determine if they are of type date or daterange, it checks whether they are an instanceof FieldStorageConfig, which is not true for BaseFieldDefinitions.
if ($field_definition instanceof FieldStorageConfig) {
return in_array($field_definition->getType(), ['datetime', 'daterange']);
}
We should instead check for instanceof FieldStorageDefinitionInterface
which includes BaseFieldDefinitions.
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
The code altered by this patch has changed. If the inherent issue still exists, then feel free to re-open the issue and update the version number.