0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Fixed broken syntax in pagination plugin

refs d783a8d2d4

- missed a comma in the `messages` object 🤦
This commit is contained in:
Daniel Lockyer 2021-06-14 15:21:57 +01:00
parent d783a8d2d4
commit de9960fc45
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -7,7 +7,7 @@ const errors = require('@tryghost/errors');
const tpl = require('@tryghost/tpl');
const messages = {
pageNotFound: 'Page not found'
pageNotFound: 'Page not found',
couldNotUnderstandRequest: 'Could not understand request.'
};