Task icon on workspace chrome toolbar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2024 09:38 PM
Hi,
Can anyone help to find from where "Task" icon is visible on Business continuity workspace ,Crisis map.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2024 09:09 PM
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"
]
}
},