Tags options not appearing in the pannel

Hello everyone!
I am encountering a strange issue and I do not see any reason, I am thinking maybe someone knows about it:
In my ‘project.yml’ blueprint, I set a tags field (‘Project tags’) for which I defined many options. But once in the panel, when I click on my tags field, it proposes me only one option which is… the title of the current project. What is even more strange is that initially it was working normally, and suddenly, without any reason I am able to explain, it started doing that.

Here is the code:

tabs:

  projectOverview:
    label: Project overview
    sections:
      titleStyle:
        type: fields
        fields:
          titleStyle:
            type: radio
            label: Title style
            options:
              normal: Normal
              italic: Italic
            help: "Some title need to be in italic (e.g. book title), while some doesn't (e.g. name of a company)"
      projectTags:
        type: fields
        fields:
          tags:
            label: Project tags
            type: tags
            options:
            - animation
            - article
            - audio
            - commodity
            - digital images
            - drawing
            - installation
            - narration
            - paper
            - space
            - volume
            - wwweb
      thumbnail:
        type: files
        label: Thumbnail 
        accept: 
          - image/jpg
          - image/png
        layout: cards

And here is what I get when clicking on my ‘Project tags’ field:

If you have any idea why and how to fix that, I would be super grateful

Thanks by advance

Can’t reproduce your issue, when I copy your code into a blueprint file, it works as expected:

Make sure indentation is correct.

Hi @texnixe, thanks for you quick answer.
I tried to create a new test blueprint and copy paste the code I sent here exactly as you did, and still it doesn’t work (I tried on 3 different browsers). That’s very mysterious :flushed:

I’ll let you know if I find the key

My indentation was effectively wrong, problem fixed. Thank you