]> git.proxmox.com Git - pve-manager.git/commitdiff
change order of weekdays
authorDominik Csapak <d.csapak@proxmox.com>
Thu, 7 Apr 2016 11:29:25 +0000 (13:29 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 7 Apr 2016 14:57:35 +0000 (16:57 +0200)
to be consistent with the grid

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/manager6/form/DayOfWeekSelector.js

index 09f87546857d1b71c9a90f7a685181205f490359..e8554629df337209c174170769c4e732b6a404a5 100644 (file)
@@ -5,13 +5,13 @@ Ext.define('PVE.form.DayOfWeekSelector', {
     initComponent: function(){
        var me = this;
        me.comboItems = [
-           ['sun', Ext.util.Format.htmlDecode(Ext.Date.dayNames[0])],
            ['mon', Ext.util.Format.htmlDecode(Ext.Date.dayNames[1])],
            ['tue', Ext.util.Format.htmlDecode(Ext.Date.dayNames[2])],
            ['wed', Ext.util.Format.htmlDecode(Ext.Date.dayNames[3])],
            ['thu', Ext.util.Format.htmlDecode(Ext.Date.dayNames[4])],
            ['fri', Ext.util.Format.htmlDecode(Ext.Date.dayNames[5])],
-           ['sat', Ext.util.Format.htmlDecode(Ext.Date.dayNames[6])]
+           ['sat', Ext.util.Format.htmlDecode(Ext.Date.dayNames[6])],
+           ['sun', Ext.util.Format.htmlDecode(Ext.Date.dayNames[0])],
        ];
        this.callParent();
     }