add missing 'Z' for iso-dates until ISO-formatting is fixed (#2008)

Adds missing 'Z' that is added explicitly now, until #1922 is fixed. It
was missing from workflow last modified and billing cancelation dates
This commit is contained in:
Ilya Kreymer 2024-08-08 16:19:32 -07:00 committed by GitHub
parent 8ff1ad39a7
commit 3923996aaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ export class WorkflowListItem extends LitElement {
(workflow) => html`
<sl-format-date
lang=${getLocale()}
date=${workflow.modified.toString()}
date="${workflow.modified.toString()}Z"
month="2-digit"
day="2-digit"
year="2-digit"

View File

@ -142,7 +142,7 @@ export class OrgSettingsBilling extends TailwindElement {
<sl-format-date
lang=${getLocale()}
class="truncate"
date=${org.subscription.futureCancelDate}
date="${org.subscription.futureCancelDate}Z"
month="long"
day="numeric"
year="numeric"