Skip to content

Commit

Permalink
Bugfix: Update extended explanations when dependent variables changes
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 12, 2024
1 parent 887e07d commit 6388c40
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/ProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,18 @@ export default defineComponent({
},
draftDialogCurrentStep(newValue, oldValue){
this.extendedExplanations = this.fetchExtendedExplanations();
},
existsScript(newValue, oldValue){
this.extendedExplanations = this.fetchExtendedExplanations();
},
existsAuthenticationScript(newValue, oldValue){
this.extendedExplanations = this.fetchExtendedExplanations();
},
existsApplicationForm(newValue, oldValue){
this.extendedExplanations = this.fetchExtendedExplanations();
},
existsVotum(newValue, oldValue){
this.extendedExplanations = this.fetchExtendedExplanations();
}
},
mounted() {
Expand Down

0 comments on commit 6388c40

Please sign in to comment.