From 070813a106e548be44963a3f7787861a642b115b 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 --- 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 d2b415198fd..af8edbec564 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -804,7 +804,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