mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6541: Fix monthly recurring snapshot UI limit, limit to 1-28 days
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
(cherry picked from commit 070813a106)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
d82879e548
commit
39dce59562
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue