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', {
Ext.apply(config, {
storeid: 'PVEResources',
model: 'PVEResources',
autoDestory: false,
defaultColums: function() {
var res = [];
Ext.Object.each(field_defaults, function(field, info) {
......
......@@ -20,7 +20,6 @@ Ext.define('PVE.form.NodeSelector', {
type: 'pve',
url: '/api2/json/nodes'
},
autoDestory: true,
sorters: [
{
property : 'node',
......
......@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', {
var realmstore = Ext.create('Ext.data.Store', {
model: 'pve-domains',
autoDestory: true
});
Ext.apply(me, {
......
......@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', {
},
data: groupdef,
autoload: true,
autoDestory: true
});
Ext.apply(me, {
......
......@@ -22,7 +22,7 @@ Ext.define('PVE.node.TimeEdit', {
fieldLabel: gettext('Time zone'),
name: 'timezone',
queryMode: 'local',
store: new PVE.data.TimezoneStore({autoDestory: true}),
store: new PVE.data.TimezoneStore(),
valueField: 'zone',
displayField: 'zone',
triggerAction: 'all',
......
......@@ -232,7 +232,6 @@ Ext.define('PVE.data.ResourceStore', {
Ext.apply(config, {
storeid: 'PVEResources',
model: 'PVEResources',
autoDestory: false,
defaultColums: function() {
var res = [];
Ext.Object.each(field_defaults, function(field, info) {
......
......@@ -17,7 +17,6 @@ Ext.define('PVE.form.RealmComboBox', {
var realmstore = Ext.create('Ext.data.Store', {
model: 'pve-domains',
autoDestory: true
});
Ext.apply(me, {
......
......@@ -45,7 +45,6 @@ Ext.define('PVE.form.ViewSelector', {
},
data: groupdef,
autoload: true,
autoDestory: true
});
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