chore(html-reporter): missing space between git date and time (#13656)

This commit is contained in:
Max Schmitt 2022-04-20 18:10:55 +02:00 committed by GitHub
parent bd79accb6f
commit 7151284147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,6 +59,7 @@ export const MetadataView: React.FC<Metadata> = metadata => {
content={
<>
{Intl.DateTimeFormat(undefined, { dateStyle: 'full' }).format(metadata['revision.timestamp'])}
{' '}
{Intl.DateTimeFormat(undefined, { timeStyle: 'long' }).format(metadata['revision.timestamp'])}
</>
}