decap-cms icon indicating copy to clipboard operation
decap-cms copied to clipboard

TypeError: e.map is not a function

Open LisaP117 opened this issue 3 years ago • 8 comments

Bug Unable to get into entries on the CMS to update my pages due to error page being presented. "TypeError: e.map is not a function"

To reproduce I log in to Netlify CMS, navigate to pages, click on index and then am presented with the attached screenshot.

What I expect I would expect to log in, navigate to pages, select the index page and be presented with editable boxes.

Screenshot Screenshot 2021-12-09 at 11 25 40

Applicable Versions:

  • Netlify CMS version: [email protected]
  • Git provider: git-gateway
  • Browser version: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36

CMS configuration

backend:
  name: git-gateway
  branch: master
site_url: https://secure24.co.uk
publish_mode: editorial_workflow
media_folder: _site/images/uploads
public_folder: src/images/uploads
collections:
  - name: pages
    label: Pages
    files:
      - name: index
        label: Index
        folder: src/site/_data/
        file: src/site/_data/index.json
        fields:
          - label: Title
            name: title
            widget: string
          - label: Subtitle
            name: subtitle
            widget: string
            required: false
          - label: Intro
            name: intro
            widget: markdown
          - label: Secondary content
            name: secondaryContent
            widget: list
            required: false
            fields:
              - label: Title
                name: title
                widget: string
              - name: content
                label: Content
                widget: list
                fields:
                  - label: Paragraph
                    name: paragraph
                    widget: markdown
                    required: false
                  - name: bullets
                    label: bullets
                    widget: list
                    required: false
                    fields:
                      - label: BulletPoint
                        name: bulletpoint
                        widget: string
                        required: false
          - name: pricing
            label: Pricing
            widget: list
            fields:
              - label: Package
                name: package
                widget: string
              - name: features
                label: Features
                widget: list
                fields:
                  - label: Feature
                    name: feature
                    widget: string
              - name: pricing
                label: Pricing
                widget: list
                fields:
                  - label: Price
                    name: price
                    widget: string
      - name: about
        label: About
        folder: src/site/_data/
        file: src/site/_data/about.json
        fields:
          - name: about
            label: about
            widget: list
            fields:
              - label: Title
                name: name
                widget: string
              - label: Subtitle
                name: subtitle
                widget: string
              - name: about
                label: About
                widget: list
                fields:
                  - label: Paragraph
                    name: paragraph
                    widget: markdown
                  - label: Image
                    name: image
                    widget: image
                    required: false
      - name: caseStudies
        label: Case Studies
        folder: src/site/_data/
        file: src/site/_data/caseStudies.json
        fields:
          - name: studies
            label: Studies
            widget: list
            fields:
              - label: Name
                name: name
                widget: string
              - label: Subtitle
                name: subtitle
                widget: string
              - name: about
                label: About
                widget: list
                fields:
                  - label: Paragraph
                    name: paragraph
                    widget: markdown
                  - label: Author
                    name: Author
                    widget: string
                    required: false
              - label
...

LisaP117 avatar Dec 09 '21 11:12 LisaP117