Skip to content

Commit

Permalink
fixed #70 - Deltacheck is not working (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
fashxp authored Aug 3, 2021
1 parent 8451a2f commit 66987b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ pimcore.plugin.pimcoreDataImporterBundle.configuration.components.importSettings

const doDeltaCheckCheckbox = Ext.create('Ext.form.field.Checkbox', {
fieldLabel: t('plugin_pimcore_datahub_data_importer_configpanel_delta_check'),
name: 'doDeltaCheckCheck',
name: 'doDeltaCheck',
disabled: (!this.processingConfigData.idDataIndex || 0 === this.processingConfigData.idDataIndex.length),
inputValue: true,
value: this.processingConfigData.hasOwnProperty('doDeltaCheckCheck') ? this.processingConfigData.doDeltaCheckCheck : false
value: this.processingConfigData.hasOwnProperty('doDeltaCheck') ? this.processingConfigData.doDeltaCheck : false
});
const doCleanup = Ext.create('Ext.form.field.Checkbox', {
fieldLabel: t('plugin_pimcore_datahub_data_importer_configpanel_do_cleanup'),
Expand Down

0 comments on commit 66987b2

Please sign in to comment.