Fixed incorrect id passed while updating setting

no refs

- a typo led to whole setting object passed to setting update method instead of just the id
This commit is contained in:
Rishabh 2022-02-04 18:23:24 +05:30
parent 1466e9c1c6
commit 972d29cae6

View File

@ -311,7 +311,7 @@ class ProductRepository {
value: JSON.stringify(updatedProducts)
}, {
...options,
id: portalProductsSetting
id: portalProductsSetting.get('id')
});
}