diff --git a/frontend/app/features/content/shared/content-list-cell.directive.ts b/frontend/app/features/content/shared/content-list-cell.directive.ts
index 8a229e623..77f150f12 100644
--- a/frontend/app/features/content/shared/content-list-cell.directive.ts
+++ b/frontend/app/features/content/shared/content-list-cell.directive.ts
@@ -46,6 +46,8 @@ export function getCellWidth(field: TableField) {
return 150;
case MetaFields.status:
return 160;
+ case MetaFields.statusNext:
+ return 240;
case MetaFields.statusColor:
return 50;
case MetaFields.version:
diff --git a/frontend/app/features/content/shared/content-list-field.component.ts b/frontend/app/features/content/shared/content-list-field.component.ts
index 0d586e34f..6bec24c12 100644
--- a/frontend/app/features/content/shared/content-list-field.component.ts
+++ b/frontend/app/features/content/shared/content-list-field.component.ts
@@ -56,6 +56,11 @@ import {
{{content.status}}
+
+
+ {{content.scheduleJob.status}} at {{content.scheduleJob.dueTime | sqxShortDate}}
+
+
+
+
+
diff --git a/frontend/app/shared/services/schemas.service.ts b/frontend/app/shared/services/schemas.service.ts
index 30b5888ce..6d49f978c 100644
--- a/frontend/app/shared/services/schemas.service.ts
+++ b/frontend/app/shared/services/schemas.service.ts
@@ -47,6 +47,7 @@ export const MetaFields = {
lastModifiedByName: 'meta.lastModifiedBy.name',
status: 'meta.status',
statusColor: 'meta.status.color',
+ statusNext: 'meta.status.next',
version: 'meta.version'
};