Skip to content

Commit

Permalink
fix closing of dialog box on clicking proceed button
Browse files Browse the repository at this point in the history
  • Loading branch information
prakhyatox committed Mar 13, 2024
1 parent 696dd0b commit 87abe36
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ export default {
closeDialog() {
this.dialog = false;
advancedSearch.commit("advancedSearch/setEditDialogStatus", false);
advancedSearch.commit(
"advancedSearch/setAdvancedSearchDialogStatus",
false
Expand Down Expand Up @@ -180,9 +179,7 @@ export default {
if (this.updatedAdvancedSearchText)
this.fetchAdvancedSearchResults(this.updatedAdvancedSearchText);
else this.fetchAdvancedSearchResults(this.advancedSearchTerm);
this.dialog = false;
advancedSearch.commit("advancedSearch/setEditDialogStatus", false);
this.closeDialog();
//Clear search text field flag
this.$emit("clearSearchField", true);
Expand Down

0 comments on commit 87abe36

Please sign in to comment.