Skip to content

Commit

Permalink
Merge pull request #198 from webitel/fix/close-conditions-popup
Browse files Browse the repository at this point in the history
fix:close conditions popup[WTEL-5687](https://webitel.atlassian.net/b…
  • Loading branch information
Lera24 authored Dec 17, 2024
2 parents b4aee20 + 973f96c commit 6ddeb36
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,8 @@ const save = async () => {
await updateItem({ itemInstance, itemId: id.value });
}
if (id?.value) {
close();
loadDataList();
}
};
async function initializePopup() {
Expand All @@ -123,7 +121,7 @@ async function initializePopup() {
}
watch(() => conditionId.value, (value) => {
if(value) {
if (value) {
initializePopup();
} else {
resetState();
Expand Down

0 comments on commit 6ddeb36

Please sign in to comment.