- Issue created by @Waen
AssertionError: "Reference" must be defined in MODULE_NAME.field_type_categories.yml in assert() (line 183 of core/lib/Drupal/Core/Field/FieldTypePluginManager.php).
Tox fix it create recipe.field_type_categories.yml in recipe module root containing:
Reference:
label: 'Reference'
In recipe\modules\ingredient\src\Plugin\Field\FieldType\IngredientItem.php
Change line 19 :
* category = @Translation("Reference"),
with :
* category = "Reference",
That seems to solve the problem in my case. I'm just pointing it out in case it might help someone else.
Fixed
2.2
Code