Skip to content

Commit

Permalink
Reverted: check for handling initial programmatical update (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Apr 2, 2024
1 parent a4cacc5 commit cd23802
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,12 +409,6 @@ export default defineComponent({
}
},
async updateRerouteFulfillmentConfiguration(config: any, value: any) {
// Handled initial programmatical update
// When storing boolean values, it is stored as string. Further comparison needs conversion
if (config.settingValue === value || (typeof value === 'boolean' && (config.settingValue == 'true') === value)) {
return;
}
const params = {
"fromDate": config.fromDate,
"productStoreId": this.currentEComStore?.productStoreId,
Expand Down

0 comments on commit cd23802

Please sign in to comment.