I made a simple jquery script to prevent it however after an ajax request the buttons remains.
jQuery(document).ready(function($) {
$("table td:contains('Admin')").closest("tr").find("a .edit-icon").remove();
$("table td:contains('Admin')").closest("tr").find("a .delete-icon").remove();
});
How to catch an ajax request to prevent this?