Skip to content

Commit

Permalink
Merge pull request #186 from craigcomstock/ENT-12361
Browse files Browse the repository at this point in the history
Hugo 0.135 added a date format validator which does not like toLocaleString() output
  • Loading branch information
craigcomstock authored Oct 4, 2024
2 parents fa03133 + ea217e7 commit fa87e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const modulesUpdate = async () => {
// frontmatters
let frontmatter = {
title: index,
date: new Date(version.timestamp).toLocaleString(),
date: new Date(version.timestamp),
id: index,
description: module.description || '',
author: {
Expand Down

0 comments on commit fa87e1a

Please sign in to comment.