From f88a0610745dae72d735218f6fe2af5db50b1856 Mon Sep 17 00:00:00 2001 From: Meliox Date: Mon, 6 Apr 2026 14:23:35 +0200 Subject: [PATCH] remove unrelation subscription part --- PveMod_pvemanagerlib.js | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/PveMod_pvemanagerlib.js b/PveMod_pvemanagerlib.js index dd6c077..cd9ec7c 100644 --- a/PveMod_pvemanagerlib.js +++ b/PveMod_pvemanagerlib.js @@ -25,7 +25,7 @@ Ext.define('PVE.node.StatusView', { }, items: [ - // ========== PRIMARY KPIs (Tier 1) ========== + // ========== Primary Metrics ========== { xtype: 'box', colspan: 2, @@ -167,7 +167,7 @@ Ext.define('PVE.node.StatusView', { padding: 0, }, - // ========== SECONDARY DETAILS (Tier 2) ========== + // ========== Secondary Metrics ========== { xtype: 'box', colspan: 2, @@ -930,29 +930,4 @@ Ext.define('PVE.node.StatusView', { me.callParent(); }, -}); -Ext.define('PVE.node.SubscriptionKeyEdit', { - extend: 'Proxmox.window.Edit', - - title: gettext('Upload Subscription Key'), - width: 350, - - items: { - xtype: 'textfield', - name: 'key', - value: '', - fieldLabel: gettext('Subscription Key'), - labelWidth: 120, - getSubmitValue: function () { - return this.processRawValue(this.getRawValue())?.trim(); - }, - }, - - initComponent: function () { - var me = this; - - me.callParent(); - - me.load(); - }, }); \ No newline at end of file