Is it possible to hide "Show one journal field" button on the Activity Stream?Issue On the activity stream of any task record, like Incident or Problem, the user can choose to have either all the journal fields visible in the "Activity stream" by clicking on the button icon called "Show All Journal fields". This will set the user preference "glide.ui.activity_stream.multiple_inputs" to "true" accordingly so that all the journal fields all on the forms would be visible to the user on the activity stream along with "Show one journal field" button icon as shown in the following screenshots. ResolutionThe "Activity stream" and journal field icons are rendered from the platform code, there is no support provision available to hide the "Show all journal field"/"Show one journal field" button icons. Related LinksUnsupported customization has been observed entailing on-load client scripts on the required table for (SN unsupported) DOM manipulation like the following: $$('button[title="Show one journal field"]')[0].hide(); //For hiding the Show one journal field $$('button[title="Show all journal field"]')[0].hide(); //For hiding the Show all journal field