Browse Source

Fixed tooltip.

pull/509/head
Sebastian 6 years ago
parent
commit
b7fc86a93e
  1. 2
      frontend/app/features/content/shared/content-status.component.ts

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.toStringFormatUTC('LLLL')}`;
return `Will be set to '${this.scheduled.status}' at ${this.scheduled.dueTime.toStringFormatUTC('PPpp')}`;
} else {
return this.status;
}

Loading…
Cancel
Save