Hiding Add Task Button Based on Project StateIssue If you want to hide the 'Add Task' button on the project planning based on the project state, despite creating an Access Control List (ACL) on the project task.ReleaseXanaduResolutionModify the ProjectWorkspaceConfig script include to add the following code block just before the 'return config' line:var statesToHideAddTask = ['3','4','5'];if(statesToHideAddTask.includes(topTaskGr.getValue("state"))){config.blackListedActions['addTaskButton'] = true;}Note that statesToHideAddTask is a list of state values that need to be hidden.