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:
parent
8ff1ad39a7
commit
3923996aaf
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user