decaporg / decap-cms

A Git-based CMS for Static Site Generators
https://decapcms.org
MIT License
17.65k stars 1 forks source link

RangeError: Invalid time value #7206

Closed jcrabapple closed 2 weeks ago

jcrabapple commented 1 month ago

Describe the bug

To Reproduce

Expected behavior

Screenshots

Applicable Versions:

CMS configuration

backend:
  name: git-gateway
  branch: master
media_folder: static/img
collections:
  - name: blog
    label: Post
    folder: posts
    create: true
    slug: "{{slug}}"
    fields:
      - label: Title
        name: title
        widget: string
      - label: Publish Date
        name: date
        widget: datetime
      - label: Author
        name: author
        widget: string
        default: Anonymous
      - label: Summary
        name: summary
        widget: text
      - label: Tags
        name: tags
        widget: list
        default:
          - post
      - label: Body
        name: body
        widget: markdown
    publish: true
    type: folder_based_collection
    sortable_fields:
      - commit_date
      - title
      - date
      - author
      - summary
    view_filters: []
    view_groups: []
  - name: pages
    label: Page
    folder: pages
    create: false
    slug: "{{slug}}"
    fields:
      - label: Title
        name: title
        widget: string
      - label: Publish Date
        name: date
        widget: datetime
      - label: Permalink
        name: permalink
        widget: string
      - label: Navigation
        name: eleventyNavigation
        widget: object
        fields:
          - label: Key
            name: key
            widget: string
          - label: Order
            name: order
            widget: number
            default: 0
      - label: Body
        name: body
        widget: markdown
    publish: true
    type: folder_based_collection
    sortable_fields:
      - commit_date
      - title
      - date
      - commit_author
    view_filters: []
    view_groups: []
publish_mode: simple
slug:
  encoding: unicode
  clean_accents: false
  sanitize_replacement: "-"
public_folder: /static/img
isFetching: false
error: null

Additional context

martinjagodic commented 2 weeks ago

Hi @jcrabapple, please fill out all the fields in the issue template. The information you provided is not enough to debug the problem.

I'm closing the issue for now. Once you add the missing information, I can open it again.