diff --git a/ghost/admin/app/controllers/lexical-editor.js b/ghost/admin/app/controllers/lexical-editor.js
index f98e876284..48416986f0 100644
--- a/ghost/admin/app/controllers/lexical-editor.js
+++ b/ghost/admin/app/controllers/lexical-editor.js
@@ -1294,13 +1294,14 @@ export default class LexicalEditorController extends Controller {
description.push(`${!emailOnly ? 'and delivered ' : ''}to ${recipientCount}`);
}
- description.push(`on ${publishedAtBlogTZ.format('MMM Do')}`);
- description.push(`at ${publishedAtBlogTZ.format('HH:mm')}`);
+ description.push(`on ${publishedAtBlogTZ.format('D MMM YYYY')}`);
+ let timeZoneLabel = '';
if (publishedAtBlogTZ.utcOffset() === 0) {
- description.push('(UTC)');
+ timeZoneLabel = '(UTC)';
} else {
- description.push(`(UTC${publishedAtBlogTZ.format('Z').replace(/([+-])0/, '$1').replace(/:00/, '')})`);
+ timeZoneLabel = `(UTC${publishedAtBlogTZ.format('Z').replace(/([+-])0/, '$1').replace(/:00/, '')})`;
}
+ description.push(`at ${publishedAtBlogTZ.format('HH:mm')} ${timeZoneLabel}`);
description = htmlSafe(description.join(' '));