This commit is contained in:
2023-08-02 19:39:16 +03:00
parent 541610ac18
commit 124c2b798c
2 changed files with 3 additions and 2 deletions

View File

@@ -228,12 +228,12 @@ function openTicket (ticket_id){
data: JSON.stringify(data),
success: function(data){
document.querySelector(".insert-tech-place").innerHTML = data.html;
document.querySelector(".info_profile").innerHTML = data.html;
},
error: function (data){
document.querySelector(".insert-tech-place").innerHTML = data.responseJSON.html;
document.querySelector(".info_profile").innerHTML = data.responseJSON.html;
}
});