Skip to content

Commit

Permalink
Merge pull request #1991 from OctopusDeploy/sf/last-updated-space
Browse files Browse the repository at this point in the history
Astro 3 auto-collapses spaces that we depended on
  • Loading branch information
steve-fenton-octopus authored Sep 1, 2023
2 parents 475a328 + 4011da9 commit dfb1a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LastUpdated.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ const date = frontmatter.modDate ?? frontmatter.pubDate;
stats.stop();
---
{date &&
<p class="last-updated"><time datetime={ date.toString() } itemprop="dateModified"></time>{ _(Translations.post.last_modified) } { accelerator.dateFormatter.formatDate(date, lang) }</time></p>
<p class="last-updated"><time datetime={ date.toString() } itemprop="dateModified"></time>{ _(Translations.post.last_modified) + ' ' + accelerator.dateFormatter.formatDate(date, lang) }</time></p>
}

0 comments on commit dfb1a74

Please sign in to comment.