Question

Hiding the option, "Manage Team Requests"

  • 16 March 2023
  • 3 replies
  • 45 views

Userlevel 7
Badge +7

Just noticed that anyone with access to view users can also access the option to “Manage Team Requests” and potentially remove a team member association. This page seems to track all changes made to employee/manager relationships whether done by an admin or via CSV import. This definitely poses a risk…

Does anyone know or have CSS to hide this option on the User Management page? 

@gstager ?

thank you.


3 replies

Userlevel 2
Badge

Did you ever get anyone to respond to this? I have the same request - I want to hide this. Thank you!

Userlevel 7
Badge +7

Still waiting...

Userlevel 7
Badge +3

This should work, note it is universal so all users don’t see it, also it is based on the aria tag which could change over time:

li:has([aria-label="Manage Team Requests"]) {
display: none;
}

 

Reply