Fix invalid DOM property
This commit is contained in:
parent
cf5c1c5496
commit
10eca1d583
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ export default function(props: Props) {
|
|||
<h1>{ props.title }</h1>
|
||||
{props.author &&
|
||||
<p style={{ color: "var(--color-brown)" }}>
|
||||
By {props.author.name} on <time datetime={props.date.toISOString()}>{dateFormatted}</time>
|
||||
By {props.author.name} on <time dateTime={props.date.toISOString()}>{dateFormatted}</time>
|
||||
</p>
|
||||
}
|
||||
{props.comp.separator()}
|
||||
|
|
Loading…
Reference in a new issue