This commit is contained in:
SBD
2023-12-03 20:22:20 +03:00
parent c2e03728f8
commit 62aeebae95
2 changed files with 4 additions and 3 deletions

View File

@@ -92,9 +92,10 @@ function select_tab_profile (el,url,owner_type=null) {
}
function deleteMarkerMessages (el) {
let marker = el.querySelector(".icon_unread_messages")
let marker = el.querySelectorAll(".icon_unread_messages")
if (marker){
marker.classList.remove("showed")
marker[0].classList.remove("showed")
marker[1].classList.remove("showed")
}
}