From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 9DD2C1FF187 for ; Mon, 28 Jul 2025 08:46:16 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id A73931A4ED; Mon, 28 Jul 2025 08:47:39 +0200 (CEST) From: Christian Ebner To: pbs-devel@lists.proxmox.com Date: Mon, 28 Jul 2025 08:46:40 +0200 Message-ID: <20250728064645.158414-6-c.ebner@proxmox.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250728064645.158414-1-c.ebner@proxmox.com> References: <20250728064645.158414-1-c.ebner@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1753685213734 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.045 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup 1/6] ui: fix formatting issues using proxmox-biome X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" Signed-off-by: Christian Ebner --- www/Utils.js | 5 ++++- www/window/DataStoreEdit.js | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/www/Utils.js b/www/Utils.js index ccdae522c..a80a59a5b 100644 --- a/www/Utils.js +++ b/www/Utils.js @@ -443,7 +443,10 @@ Ext.define('PBS.Utils', { PBS.Utils.render_drive_load_media_id(id, gettext('Load Media')), logrotate: [null, gettext('Log Rotation')], 'mount-device': [gettext('Datastore'), gettext('Mount Device')], - 'mount-sync-jobs': [gettext('Datastore'), gettext('sync jobs handler triggered by mount')], + 'mount-sync-jobs': [ + gettext('Datastore'), + gettext('sync jobs handler triggered by mount'), + ], prune: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Prune')), prunejob: (type, id) => PBS.Utils.render_prune_job_worker_id(id, gettext('Prune Job')), reader: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Read Objects')), diff --git a/www/window/DataStoreEdit.js b/www/window/DataStoreEdit.js index b414bd4c0..8296e0b04 100644 --- a/www/window/DataStoreEdit.js +++ b/www/window/DataStoreEdit.js @@ -78,8 +78,9 @@ Ext.define('PBS.DataStoreEdit', { let s3ClientSelector = inputPanel.down('[name=s3client]'); let overwriteInUseField = inputPanel.down('[name=overwrite-in-use]'); - let reuseDatastore = - inputPanel.down('[name=reuse-datastore]').getValue(); + let reuseDatastore = inputPanel + .down('[name=reuse-datastore]') + .getValue(); uuidEditField.setDisabled(!isRemovable); uuidEditField.allowBlank = !isRemovable; -- 2.47.2 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel