From 01f172cd373f355d38cd61922819091631f2d92b Mon Sep 17 00:00:00 2001 From: bfederle Date: Wed, 20 Jun 2012 14:50:26 -0700 Subject: [PATCH] CS-14110: Show timestamp for general alerts Original patch by: olga.smola reviewed-by: brian --- ui/index.jsp | 1 + ui/scripts/dashboard.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/index.jsp b/ui/index.jsp index 12361a4b43c..bf026407444 100644 --- a/ui/index.jsp +++ b/ui/index.jsp @@ -1158,6 +1158,7 @@
Alert 1

Alert 1

+

Alert 1

diff --git a/ui/scripts/dashboard.js b/ui/scripts/dashboard.js index 7a7df08c4df..07581779d45 100644 --- a/ui/scripts/dashboard.js +++ b/ui/scripts/dashboard.js @@ -202,7 +202,8 @@ alerts: $.map(alerts, function(alert) { return { name: cloudStack.converters.toAlertType(alert.type), - description: alert.description + description: alert.description, + sent: cloudStack.converters.toLocalDate(alert.sent) }; }) }));