2 diferent picture fields

Hi all.
I would like to create 2 different image fileds. On “normal” picture field and anothe for a video thumbnail.

Problem: as soon as i upload 1 picture it will be used for both. replacing one of the, will replace both.

this is, what i have right now:

right:
    width: 1/3
    sections:
        Picture:
            label: Pic
            type: files
            template: accept_image
            max: 1
            layout: cards
            image:
                cover: true
        
        Video:
            type: files
            template: accept_video
            max: 1
            layout: list
            image:
                cover: false
        Thumbnail:
            label: Thumb
            type: files
            template: accept_image
            max: 1
            layout: list
            image:
                cover: false

Thx and greetings
Christian

Both your picture section and the thumbnail section use the same template, so yes, they will show up in both sections. So the solution would be to assign different templates, you will need the template to filter by in the frontend, anyway.

What you have defined there are sections, btw, not fields.

Perfect… thx a lot!

right:
    width: 1/3
    sections:
        Picture:
            label: Pic
            type: files
            template: accept_image
            max: 1
            layout: cards
            image:
                cover: true
        
        Video:
            type: files
            template: accept_video
            max: 1
            layout: list
            image:
                cover: false
        Thumbnail:
            label: Thumb
            type: files
            template: accept_thumb
            max: 1
            layout: list
            image:
                cover: false