Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

Task icon on workspace chrome toolbar

Supriya P
Tera Contributor

Hi,

Can anyone help to find from where "Task" icon is visible on Business continuity workspace ,Crisis map.

SupriyaP_0-1715229412671.png

 

1 REPLY 1

Sonika Lohchab
ServiceNow Employee
ServiceNow Employee

Please follow these steps:

1. As a system admin, navigate to Now Experience Framework > Experiences > Open business continuity workspace with URL path "bcm" > Open the UX page property "chrome_toolbar" 

2.  Set available for tasks to nobody. Find json for tasks and update availability in it.

"availability": {
            "roles": [
                "nobody"
            ]
        }

3. This will make tasks icons inaccessible to everyone. You can also revert easily if needed.

4. Sample json of tasks in chrome_toolbar

{
        "id": "tasks",
        "label": {
            "message": "Tasks",
            "translatable": true
        },
        "icon": "circle-check-outline",
        "order": 150,
        "viewportInfo": {},
        "routeInfo": {
            "route": "workqueue"
        },
        "group": "top",
        "badge": {},
        "presence": {},
        "availability": {
            "roles": [
                "nobody"
            ]
        }
    },