]> git.proxmox.com Git - pmg-gui.git/commitdiff
pbs: top bar UX improvements
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 17 Nov 2020 18:11:34 +0000 (19:11 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 17 Nov 2020 18:11:34 +0000 (19:11 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
js/PBSConfig.js

index 5b25940300b81fa7607805aed660f24c3c84b487..02183e1855c0d903212913d1152d05b5c6f43482 100644 (file)
@@ -516,24 +516,26 @@ Ext.define('PMG.PBSConfigGrid', {
     },
 
     tbar: [
+       {
+           text: gettext('Add Remote'),
+           handler: 'newRemote',
+       },
+       '-',
        {
            xtype: 'proxmoxButton',
            text: gettext('Edit'),
            disabled: true,
            handler: 'run_editor',
        },
-       {
-           text: gettext('Create'),
-           handler: 'newRemote',
-       },
        {
            xtype: 'proxmoxStdRemoveButton',
            baseurl: '/config/pbs',
            callback: 'reload',
        },
+       '-',
        {
            xtype: 'proxmoxButton',
-           text: gettext('Schedule'),
+           text: gettext('Set Schedule'),
            enableFn: function(rec) {
                return !rec.data.disable;
            },