Info field doesn't work in fields group

Hi,

It seems Info field is not supported by fields group.

Example:

fields:
  date:
    type: date
    time: true
    default: now
  author:
    type: users
  tags:
    type: tags
    options:
      type: query
      query: site.tags.toStructure.sortBy("name", "asc")
      text: "{{ structureItem.name }}"
      value: "{{ structureItem.value }}"
  info:
    label: Info
    type: info
    text: |
      Dear editor,

      each project should have a **cover.jpg**, which will be displayed in the project overview. You should also make sure to fill in all fields correctly.

      In love,
      Your admin

The Info field is not shown in the Panel.

Can you confirm this?

Your blueprint renders for me just fine, showing the info field:

Is it because my blueprint is not correct?

# /site/theme/blueprints/fieldsets/accordeon.yml
name: Accordeon
label: - {{ blockid }}
icon: divider

tabs:
  tabContent:
    label: Contenu
    icon: edit
    fields:
      blockid:
        label: ID de section
        type: text
      ...

  tabOptions:
    label: Options
    fields:
      section-param: fields/attributes-group

and the fields group:

# /site/theme/blueprints/fields/attributes-group.yml
type: group
fields:
  date:
    type: date
    time: true
    default: now
  author:
    type: users
  tags:
    type: tags
    options:
      type: query
      query: site.tags.toStructure.sortBy("name", "asc")
      text: "{{ structureItem.name }}"
      value: "{{ structureItem.value }}"
  info:
    label: Info
    type: info
    text: |
      Dear editor,

      each project should have a **cover.jpg**, which will be displayed in the project overview. You should also make sure to fill in all fields correctly.

      In love,
      Your admin

These are different from the blueprint you initially posted. Also you’re using it inside a block which would be good to mention in your first post.

But same result here, works for me:

For you, the info field is not shown or any of those fields isn’t shown?

You’re right, sorry for lack of precision.

I found my error, it’s simply that the name of the Info field was already taken by another field.

Sorry again to have occupied the forum for nothing