mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
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:
parent
1466e9c1c6
commit
972d29cae6
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ class ProductRepository {
|
|||
value: JSON.stringify(updatedProducts)
|
||||
}, {
|
||||
...options,
|
||||
id: portalProductsSetting
|
||||
id: portalProductsSetting.get('id')
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue