Render comment fields in the bottom region via hook_farm_ui_theme_region_items().

This commit is contained in:
Michael Stenta 2023-04-11 20:04:34 -04:00
parent 8a5483d1d7
commit 05bec09dba
1 changed files with 11 additions and 0 deletions

View File

@ -80,3 +80,14 @@ function farm_comment_base_field_definition(string $entity_type) {
return $field;
}
/**
* Implements hook_farm_ui_theme_region_items().
*/
function farm_comment_farm_ui_theme_region_items(string $entity_type) {
return [
'bottom' => [
'comment',
],
];
}