This commit is contained in:
Abhishek Kathuria 2022-07-30 17:28:50 +05:30
parent d28d1a693b
commit 5f6c756d84
2 changed files with 4 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -145,6 +145,7 @@ export default {
},
readAll: function () {
let this_this = this;
let notifications = document.querySelector(".dropdown-list");
this.$http.post(this.getReadAllUrl)
.then(function (response) {
@ -160,6 +161,8 @@ export default {
this_this.$root.addFlashMessages();
})
.catch(function (error) {})
notifications.style.display = "none";
}
}
}