Skip to content

Commit

Permalink
hotfix: display workflow list date as utc
Browse files Browse the repository at this point in the history
  • Loading branch information
SuaYoo committed Oct 17, 2023
1 parent adf71f1 commit 6b897e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/workflow-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class WorkflowListItem extends LitElement {
${this.safeRender((workflow) => {
if (workflow.lastCrawlTime && workflow.lastCrawlStartTime) {
return html`<sl-format-date
date=${workflow.lastRun.toString()}
date="${workflow.lastRun.toString()}Z"
month="2-digit"
day="2-digit"
year="2-digit"
Expand Down

0 comments on commit 6b897e2

Please sign in to comment.