Skip to content

Commit

Permalink
fix(ui): properly update low code editor on metadata editing (#4464)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic committed Jul 29, 2024
1 parent 1ad3bb6 commit 051a04a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/inputs/EditorView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
});
return;
}
onEdit(YamlUtils.insertTrigger(source, newTrigger.value));
onEdit(YamlUtils.insertTrigger(source, newTrigger.value), true);
newTrigger.value = null;
isNewTriggerOpen.value = false;
haveChange.value = true;
Expand Down Expand Up @@ -557,7 +557,7 @@
});
return;
}
onEdit(YamlUtils.insertError(source, newError.value));
onEdit(YamlUtils.insertError(source, newError.value), true);
newError.value = null;
isNewErrorOpen.value = false;
};
Expand Down

0 comments on commit 051a04a

Please sign in to comment.