0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed typo

This commit is contained in:
Naz 2022-11-10 17:29:41 +07:00
parent b821c84b9e
commit 23c29d0674
No known key found for this signature in database

View file

@ -215,7 +215,7 @@ class FixtureManager {
// would change the fixturesHash.
modelFixture = _.cloneDeep(modelFixture);
// The Post model fixtures need a `published_at` date, where at least the seconds
// are different, otherwise `prev_post` and `next_post` helpers won't workd with
// are different, otherwise `prev_post` and `next_post` helpers won't work with
// them.
if (modelFixture.name === 'Post') {
_.forEach(modelFixture.entries, (post, index) => {