ui: subscription upload: increase window and label width

Quite a few translations produce a longer label here, so account for
that, the window is still very small.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-10-05 13:32:55 +02:00
parent 67dc81829f
commit a341730bd4

View File

@ -2,13 +2,14 @@ Ext.define('PVE.node.SubscriptionKeyEdit', {
extend: 'Proxmox.window.Edit', extend: 'Proxmox.window.Edit',
title: gettext('Upload Subscription Key'), title: gettext('Upload Subscription Key'),
width: 300, width: 350,
items: { items: {
xtype: 'textfield', xtype: 'textfield',
name: 'key', name: 'key',
value: '', value: '',
fieldLabel: gettext('Subscription Key'), fieldLabel: gettext('Subscription Key'),
labelWidth: 120,
}, },
initComponent: function() { initComponent: function() {