From a979c78da03c9dea8fb0f4d378ed72f8e8d0a309 Mon Sep 17 00:00:00 2001 From: Emmanuel Kasper Date: Thu, 1 Dec 2016 14:16:40 +0100 Subject: [PATCH] Remove last extra comma also whitespace / indent cleanup --- www/manager6/lxc/Options.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/www/manager6/lxc/Options.js b/www/manager6/lxc/Options.js index 2df93a92..a77c1941 100644 --- a/www/manager6/lxc/Options.js +++ b/www/manager6/lxc/Options.js @@ -119,28 +119,28 @@ Ext.define('PVE.lxc.Options', { } } : undefined }, - protection: { - header: gettext('Protection'), - defaultValue: false, - renderer: PVE.Utils.format_boolean, - editor: caps.vms['VM.Config.Options'] ? { - xtype: 'pveWindowEdit', - subject: gettext('Protection'), - items: { - xtype: 'pvecheckbox', - name: 'protection', - uncheckedValue: 0, - defaultValue: 0, - deleteDefaultValue: true, - fieldLabel: gettext('Enabled') - } - } : undefined + protection: { + header: gettext('Protection'), + defaultValue: false, + renderer: PVE.Utils.format_boolean, + editor: caps.vms['VM.Config.Options'] ? { + xtype: 'pveWindowEdit', + subject: gettext('Protection'), + items: { + xtype: 'pvecheckbox', + name: 'protection', + uncheckedValue: 0, + defaultValue: 0, + deleteDefaultValue: true, + fieldLabel: gettext('Enabled') + } + } : undefined }, unprivileged: { header: gettext('Unprivileged container'), renderer: PVE.Utils.format_boolean, defaultValue: 0 - }, + } }; var baseurl = 'nodes/' + nodename + '/lxc/' + vmid + '/config';