Hide Assign To option in Action's dropdown

I want to Hide AssignTo Options For Employees.
is it possible to hide or can be removed using permission Role Manager etc?

Thanks in Advance. :slight_smile:

Did you resolved to hide this? Can you please share

Hello, try this.

  1. Inspect the browser’s source code to find the data-label of the workflow button.
  2. Then, in the doctype’s listview script (doctype_listview.js), add the following code:
 refresh: function(listview) {
	 var example = listview.$page.find(`[data-label='example']`);
	 example.hide(); 
	 example.parent().hide();
	 example.parent().parent().hide();

Please make sure to replace 'example' with the actual data-label value of the workflow button you found during inspection.