@thei you have lots of unnecessary properties in your field definitions. For example "template_id = 0" and "parent_id = 0"
This messes things up. Please remove them. I have added a note to hopefully avoid such issues in the future:
This is all you need for a repeater:
return [
'label' => 'TEST',
'type' => 'FieldtypeRepeater',
'fields' => [
'title',
'mytext',
],
'repeaterTitle' => '#n: {title}',
'familyFriendly' => 1,
'repeaterDepth' => 0,
'tags' => 'test',
'repeaterAddLabel' => 'Add New Item',
];
Please mark this topic [solved] thx!