Browse Source

Time fixed.

pull/509/head
Sebastian 6 years ago
parent
commit
4e405fe097
  1. 4
      backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml
  2. 2
      frontend/app/features/content/shared/content-status.component.ts

4
backend/src/Squidex/Areas/IdentityServer/Views/_Layout.cshtml

@ -25,8 +25,8 @@
</div>
<environment names="Development">
<script type="text/javascript" src="http://localhost:3000/shims.js"></script>
<script type="text/javascript" src="http://localhost:3000/app.js"></script>
<script type="text/javascript" src="https://localhost:3000/shims.js"></script>
<script type="text/javascript" src="https://localhost:3000/app.js"></script>
</environment>
</body>
</html>

2
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;
}

Loading…
Cancel
Save