how to hide "Show one/all journal field" button on the Activity Stream in servicenow

shashanksha
Tera Contributor

how to hide "Show one/all journal field" button on the Activity Stream in servicenow

 

shashanksha_0-1731058177096.png

 

2 REPLIES 2

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @shashanksha 

Answer is No.

 

https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0688432#:~:text=Resolution,on....

 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

abhi159
Kilo Sage
 
use this in client script and make the isolate script check box false.
var button = document.querySelector('.icon-stream-all-input.btn-default.btn');
button.style.display = 'none';
 
Please mark this response as correct or helpful if it assisted you with your question.