Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove space between hour and minutes
  • Loading branch information
oandregal committed Dec 16, 2025
commit 4c730f6ca6ea9428eb5588b5c0525bd0261b545b
4 changes: 4 additions & 0 deletions packages/date/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## Bug Fixes

- Fixed incorrect spacing for the time format. It was `g: i` (`14: 30`), and it's now `g:i` (`14:30`). See [#73924](https://github.com/WordPress/gutenberg/pull/73924).

## 5.36.0 (2025-11-26)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/date/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ let settings: DateSettings = {
startOfWeek: 0,
},
formats: {
time: 'g: i a',
time: 'g:i a',
date: 'F j, Y',
datetime: 'F j, Y g: i a',
datetimeAbbreviated: 'M j, Y g: i a',
datetime: 'F j, Y g:i a',
datetimeAbbreviated: 'M j, Y g:i a',
},
timezone: { offset: 0, offsetFormatted: '0', string: '', abbr: '' },
};
Expand Down