How to enable additional comments in workspace from ui builder
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
In my servicenow instance users mapped with responsibility A can see entire activity stream in workspace and users mapped to responsibility B cannot see it. I want to enable the additional comments for users with responsibility B.
I am looking into workspace configured in the UI builder and there is script set up in the hide component for activity stream which is basically based on output of one of the data resource. But I am unable to figure out the logic set up in data resource. Please help me understand it. Refer the images below for more clarity
Script:
function evaluateProperty({api, helpers}) {
var compose_disabled=api.data.compose_section_visibility__1.output;
if(compose_disabled) {
return true;
}
return false;
}
Data resource: compose_section_visibility_1

Data resource: compose_section_visibility_1
0 REPLIES 0