Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
[#1105](https://github.com/nextcloud/cookbook/pull/1105) @MarcelRobitaille
- Fix typos and styling issues
[#1112](https://github.com/nextcloud/cookbook/pull/1112) @christianlupus
- Fix API endpoint used for updating recipes
[#1119](https://github.com/nextcloud/cookbook/pull/1119) @MarcelRobitaille

### Maintenance
- Add composer.json to version control to have unique installed dependency versions
Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ export default {
const $this = this

const request = (() => {
if (this.recipe_id) {
if (this.$route.params.id ?? false) {
return this.$store.dispatch("updateRecipe", {
recipe: this.recipeWithCorrectedYield,
})
Expand Down