2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Fixed defaultValue for sharedViews setting

refs https://github.com/TryGhost/Ghost/issues/10318

- `shared_views` is always an array (Ghost-Admin has handling to revert it to an array if it's anything else) but it's default value was set to an empty object
This commit is contained in:
Kevin Ansfield 2020-06-24 15:15:55 +01:00
parent e9b6e8eca7
commit 05ac53ffa1

View file

@ -239,7 +239,7 @@
},
"views": {
"shared_views": {
"defaultValue": "{}"
"defaultValue": "[]"
}
}
}