From 4e405fe0974ff75f6b041fa4f36629741302deaf Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 7 Apr 2020 20:39:42 +0200 Subject: [PATCH] Time fixed. --- backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml | 4 ++-- .../app/features/content/shared/content-status.component.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml b/backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml index d28c046c3..e00d6fcfc 100644 --- a/backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml +++ b/backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml @@ -25,8 +25,8 @@ - - + + \ No newline at end of file diff --git a/frontend/app/features/content/shared/content-status.component.ts b/frontend/app/features/content/shared/content-status.component.ts index fbf49524f..5564a2c37 100644 --- a/frontend/app/features/content/shared/content-status.component.ts +++ b/frontend/app/features/content/shared/content-status.component.ts @@ -44,7 +44,7 @@ export class ContentStatusComponent { public get tooltipText() { if (this.scheduled) { - return `Will be set to '${this.scheduled.status}' at ${this.scheduled.dueTime.toStringFormat('LLLL')}`; + return `Will be set to '${this.scheduled.status}' at ${this.scheduled.dueTime.toStringFormatUTC('LLLL')}`; } else { return this.status; }