diff --git a/frontend/src/components/Recipe/Parts/Instructions.vue b/frontend/src/components/Recipe/Parts/Instructions.vue index 2f6d4e019a66..35f5dd66d291 100644 --- a/frontend/src/components/Recipe/Parts/Instructions.vue +++ b/frontend/src/components/Recipe/Parts/Instructions.vue @@ -91,6 +91,15 @@ export default { mounted() { this.showTitleEditor = this.value.map(x => this.validateTitle(x.title)); }, + + watch: { + value: { + handler() { + this.disabledSteps = []; + } + } + }, + methods: { generateKey(item, index) { return utils.generateUniqueKey(item, index);