diff --git a/frontend/app/components/Dashboard/components/Alerts/AlertListItem.tsx b/frontend/app/components/Dashboard/components/Alerts/AlertListItem.tsx
index aaecc0b14..3e8a68f11 100644
--- a/frontend/app/components/Dashboard/components/Alerts/AlertListItem.tsx
+++ b/frontend/app/components/Dashboard/components/Alerts/AlertListItem.tsx
@@ -2,6 +2,7 @@ import React from 'react';
import { Icon } from 'UI';
import { checkForRecent } from 'App/date';
import { withSiteId, alertEdit } from 'App/routes';
+import { numberWithCommas } from 'App/utils';
// @ts-ignore
import { DateTime } from 'luxon';
import { withRouter, RouteComponentProps } from 'react-router-dom';
@@ -108,7 +109,7 @@ function AlertListItem(props: Props) {
{' is '}
{alert.query.operator}
- {alert.query.right} {alert.metric.unit}
+ {numberWithCommas(alert.query.right)} {alert.metric.unit}
{' over the past '}
{getThreshold(alert.currentPeriod)}