diff --git a/public/app/plugins/panel/alertlist/module.ts b/public/app/plugins/panel/alertlist/module.ts index e120ed05b6d..c934902e7e1 100644 --- a/public/app/plugins/panel/alertlist/module.ts +++ b/public/app/plugins/panel/alertlist/module.ts @@ -125,7 +125,7 @@ class AlertListPanel extends PanelCtrl { .then(res => { this.currentAlerts = this.sortResult(_.map(res, al => { al.stateModel = alertDef.getStateDisplayModel(al.state); - al.newStateDateAgo = moment(al.newStateDate).fromNow().replace(" ago", ""); + al.newStateDateAgo = moment(al.newStateDate).locale('en').fromNow(true); return al; })); });