Specify timezone in announcement

This commit is contained in:
supercolbat 2023-08-26 16:54:43 -05:00
parent a96f435778
commit 770ec40a39
No known key found for this signature in database
GPG Key ID: 4C9B319E75DD8072
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ export const fetchGhost = async (action: string, additional?: string) => {
"/?key=" + "/?key=" +
env.GHOST_API_KEY + env.GHOST_API_KEY +
"&include=authors,tags&limit=all&formats=html,plaintext" + "&include=authors,tags&limit=all&formats=html,plaintext" +
(additional ? additional : ""), additional || "",
{ httpsAgent: agent, timeout: 10000 } { httpsAgent: agent, timeout: 10000 }
); );
}; };

View File

@ -61,8 +61,8 @@
<span>Created - {data.announcements.incident.createdDate}</span> <span>Created - {data.announcements.incident.createdDate}</span>
{#if data.announcements.incident.lastUpdatedDate} {#if data.announcements.incident.lastUpdatedDate}
<span <span
>Updated - {data.announcements.incident >Updated - {data.announcements.incident.lastUpdatedDate}
.lastUpdatedDate}</span UTC</span
> >
{/if} {/if}
</div> </div>