Skip to content

Commit

Permalink
Merge pull request #7632 from ProcessMaker/observation/FOUR-18844
Browse files Browse the repository at this point in the history
Bugfix/FOUR-18844: "Loading suggestion" keeps showing indefinitely in scripts
  • Loading branch information
ryancooley authored Oct 25, 2024
2 parents 7b9ab36 + 6416be1 commit 7930293
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ export default {
methods: {
toggleSuggestions() {
this.showSuggestions = !this.showSuggestions;
if (this.showSuggestions) {
this.fetchSuggestions();
}
},
generateScript() {
this.$emit("generate-script", this.text);
Expand Down

0 comments on commit 7930293

Please sign in to comment.