It should be possible to have more than one instance of a global field definition or fieldsnippet shouldn’t it?
This is my Gfieldef:
type: group
fields:
i_text:
label: Introduction
type: textarea
buttons: false
validate:
maxLength: 300
and in a blueprint I call it as:
intro:
extends: intro
and it works, but If I attempt to use two of them:
intro:
extends: intro
intro2:
extends: intro
It just renders one of them. If I change the label:
intro:
extends: intro
fields:
i_text:
label: something
intro:
extends: intro
fields:
i_text:
label: somethingelse
…only one field with the second label shows.
Is this not possible at all?
Thank you