From 34cefb17aa2e5a1eb7c4fd2324304549ad2df872 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 d336f5eb939..0553230a3bc 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -801,7 +801,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