Commit 1e203a8e authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

Remove unused misspelled parameter

parent 03169c5a
...@@ -232,7 +232,6 @@ Ext.define('PVE.data.ResourceStore', { ...@@ -232,7 +232,6 @@ Ext.define('PVE.data.ResourceStore', {
Ext.apply(config, { Ext.apply(config, {
storeid: 'PVEResources', storeid: 'PVEResources',
model: 'PVEResources', model: 'PVEResources',
autoDestory: false,
defaultColums: function() { defaultColums: function() {
var res = []; var res = [];
Ext.Object.each(field_defaults, function(field, info) { Ext.Object.each(field_defaults, function(field, info) {
......
...@@ -20,7 +20,6 @@ Ext.define('PVE.form.NodeSelector', { ...@@ -20,7 +20,6 @@ Ext.define('PVE.form.NodeSelector', {
type: 'pve', type: 'pve',
url: '/api2/json/nodes' url: '/api2/json/nodes'
}, },
autoDestory: true,
sorters: [ sorters: [
{ {
property : 'node', property : 'node',
......
...@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', { ...@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', {
var realmstore = Ext.create('Ext.data.Store', { var realmstore = Ext.create('Ext.data.Store', {
model: 'pve-domains', model: 'pve-domains',
autoDestory: true
}); });
Ext.apply(me, { Ext.apply(me, {
......
...@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', { ...@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', {
}, },
data: groupdef, data: groupdef,
autoload: true, autoload: true,
autoDestory: true
}); });
Ext.apply(me, { Ext.apply(me, {
......
...@@ -22,7 +22,7 @@ Ext.define('PVE.node.TimeEdit', { ...@@ -22,7 +22,7 @@ Ext.define('PVE.node.TimeEdit', {
fieldLabel: gettext('Time zone'), fieldLabel: gettext('Time zone'),
name: 'timezone', name: 'timezone',
queryMode: 'local', queryMode: 'local',
store: new PVE.data.TimezoneStore({autoDestory: true}), store: new PVE.data.TimezoneStore(),
valueField: 'zone', valueField: 'zone',
displayField: 'zone', displayField: 'zone',
triggerAction: 'all', triggerAction: 'all',
......
...@@ -232,7 +232,6 @@ Ext.define('PVE.data.ResourceStore', { ...@@ -232,7 +232,6 @@ Ext.define('PVE.data.ResourceStore', {
Ext.apply(config, { Ext.apply(config, {
storeid: 'PVEResources', storeid: 'PVEResources',
model: 'PVEResources', model: 'PVEResources',
autoDestory: false,
defaultColums: function() { defaultColums: function() {
var res = []; var res = [];
Ext.Object.each(field_defaults, function(field, info) { Ext.Object.each(field_defaults, function(field, info) {
......
...@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', { ...@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', {
var realmstore = Ext.create('Ext.data.Store', { var realmstore = Ext.create('Ext.data.Store', {
model: 'pve-domains', model: 'pve-domains',
autoDestory: true
}); });
Ext.apply(me, { Ext.apply(me, {
......
...@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', { ...@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', {
}, },
data: groupdef, data: groupdef,
autoload: true, autoload: true,
autoDestory: true
}); });
Ext.apply(me, { Ext.apply(me, {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment