]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: ceph install mask: avoid showing version
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sun, 22 Nov 2020 16:58:52 +0000 (17:58 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sun, 22 Nov 2020 16:59:36 +0000 (17:59 +0100)
we do not know yet which version will get installed for real, so just
drop that part.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/window/CephInstall.js

index d6aa7ccd313b1f4d91c297c64a9891eaa68f472c..61475d85ec45ee4b106c0f819389306967ac1c84 100644 (file)
@@ -22,7 +22,6 @@ Ext.define('PVE.ceph.Install', {
     },
     viewModel: {
        data: {
-             cephVersion: 'nautilus',
              isInstalled: false
        },
        formulas: {
@@ -30,7 +29,7 @@ Ext.define('PVE.ceph.Install', {
                if (get('isInstalled')) {
                    return gettext('Configure Ceph');
                } else {
-                   return gettext('Install Ceph-') + get('cephVersion');
+                   return gettext('Install Ceph');
                }
            },
            windowText: function (get) {