diff --git a/plugins/ilert/src/components/ServicesPage/ServicesTable.tsx b/plugins/ilert/src/components/ServicesPage/ServicesTable.tsx
index 30a83e4cec..2597986031 100644
--- a/plugins/ilert/src/components/ServicesPage/ServicesTable.tsx
+++ b/plugins/ilert/src/components/ServicesPage/ServicesTable.tsx
@@ -86,7 +86,7 @@ export const ServicesTable = ({
cellStyle: smColumnStyle,
headerStyle: smColumnStyle,
render: rowData => (
- {rowData.uptime.uptimePercentage.p90}
+ {rowData.uptime?.uptimePercentage?.p90 || ''}
),
};
const actionsColumn: TableColumn = {