auth/user: Fix url hash in link so redirection shows the correct menu path (#8509)

This commit is contained in:
Monviech 2025-03-31 13:06:47 +02:00 committed by GitHub
parent c48353cdc1
commit 3f1ed2dff5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@
let refid = $(this).data("row-id") !== undefined ? $(this).data("row-id") : '';
ajaxGet('/api/auth/user/get/' + refid, {}, function(data){
if (data.user) {
window.location ='/ui/trust/cert/#user=' + data.user.name ;
window.location ='/ui/trust/cert#user=' + data.user.name ;
}
});
},