From 39dce59562b5c22c208e6ef483fdf8adeb28d392 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Thu, 19 Feb 2015 15:42:12 +0530 Subject: [PATCH] CLOUDSTACK-6541: Fix monthly recurring snapshot UI limit, limit to 1-28 days Signed-off-by: Rohit Yadav (cherry picked from commit 070813a106e548be44963a3f7787861a642b115b) Signed-off-by: Rohit Yadav --- ui/scripts/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/storage.js b/ui/scripts/storage.js index baba27372fd..7b4015328a4 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -860,7 +860,7 @@ 'day-of-month': function(args) { var time = []; - for (var i = 1; i <= 31; i++) { + for (var i = 1; i <= 28; i++) { time.push({ id: i, name: i