From: Dominik Csapak Date: Mon, 15 Jan 2024 11:12:40 +0000 (+0100) Subject: disclaimer edit: add position comobobox X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=99593c8571a5610af1c5edb39d6ce05f40a2d571;p=pmg-gui.git disclaimer edit: add position comobobox to enable setting the disclaimer position Signed-off-by: Dominik Csapak --- diff --git a/js/Utils.js b/js/Utils.js index 7fa154e..974df1f 100644 --- a/js/Utils.js +++ b/js/Utils.js @@ -686,6 +686,17 @@ Ext.define('PMG.Utils', { growMax: 250, fieldLabel: gettext("Disclaimer"), }, + { + xtype: 'proxmoxKVComboBox', + name: 'position', + fieldLabel: gettext("Position"), + deleteEmpty: false, + value: 'end', + comboItems: [ + ['end', gettext('End')], + ['start', gettext('Start')], + ], + }, ], }, },