diff --git a/src/components/ModelTableList/shared.js b/src/components/ModelTableList/shared.js index 8a5194324..62fed41c1 100644 --- a/src/components/ModelTableList/shared.js +++ b/src/components/ModelTableList/shared.js @@ -135,7 +135,7 @@ export function getStatusValue(status, key) { returnValue = status.controllerName; break; case "status.since": - returnValue = status.status.since.split("T")[0]; + returnValue = status.status.since?.split("T")[0]; break; default: console.log(`unsupported status value key: ${key}`);