Pages Field Showing Duplicate Entries

Hi! Im having trouble displaying a list of two pages in my Site Panel. Basically I want my client to see :

– About Pages

About
Contact

For a reason I can’t figure out, selecting the second page in the aboutPages field and saving causes the Site panel to show the only first page, twice. I’ve tried hard coding the site.txt file, checking the uID of the pages, deleting all pages in the field and re-adding them, disabling the field in the Blueprint.

Code and Display below.

Thanks so much!

title: Site

columns:
  sidebar:
    width: 1/3
    fields:
      gallery:
        label: Site Images
        type: pages
        templates: images 
        layout: list
        disabled: true
        multiple: false
        subpages: false
        info: Database of Project and Artist Images
      homePage:
        label: Home Page
        type: pages
        template: home 
        layout: list
        disabled: true
        multiple: false
        info: Use this Page to Set Homepage Images
      aboutPages:
        label: About Pages
        type: pages
        template: default 
        disabled: false
        layout: list
      metaDescription:
        label: Description
        type:  textarea
        size: small
      metaKeywords:
        label: Keywords
        type:  text
        size: small
  main:
    width: 2/3
    sections:
      artist: sections/artist
      project: sections/project
Title: 123

----

Gallery: - page://xz5igvsrj8y3cdio

----

Homepage: - page://7b6xw0btyi8if79y

----

Aboutpages:

- page://gtzqtnrlrjvauhel
- page://gtzqtnrlrjvauhel

----

Metadescription: 123

----

Metakeywords: 123

Hm, hard to tell what’s happening here.

What I do see is that you are using a templates and template prop in your pages field which does not exist. So the first step would be to remove those non-existing props.

Second, make sure you don’t accidentally have duplicate pages in your folder.

Strange!

I updated the Site blueprint as suggested (Thank you!) to the below. I checked for duplicate pages, and none exist. I checked that the Uuids for About and Contact are unique, and they are. Same behavior. :frowning:


columns:
  sidebar:
    width: 1/3
    fields:
      gallery:
        label: Site Images
        type: pages
        layout: list # or 'cards'
        disabled: true
        multiple: false
        subpages: false
        info: Database of Project and Artist Images
      homePage:
        label: Home Page
        type: pages
        layout: list # or 'cards'
        disabled: true
        multiple: false
        info: Use this Page to Set Homepage Images
      aboutPages:
        label: About Pages
        type: pages
        disabled: false
        layout: list # or 'cards'
      metaDescription:
        label: Description
        type:  textarea
        size: small
      metaKeywords:
        label: Keywords
        type:  text
        size: small
  main:
    width: 2/3
    sections:
      artist: sections/artist
      project: sections/project