How can I remove these dots from the Help icon?

MBarrott
Mega Sage

Is there any way I can remove this notification bubble with the three dots from the Help icon?

 

MBarrott_0-1726173996269.png

 

1 REPLY 1

Mani A
Tera Guru

Not sure but try with UI scripts in lower instances. 

If this is really required then contact servicenow support team as it effects globally


(function() {
document.addEventListener('DOMContentLoaded', function() {
// Select the notification bubble and hide it
var notificationBubble = document.querySelector('.notification-bubble-class'); // Adjust selector as needed
if (notificationBubble) {
notificationBubble.style.display = 'none';
}
});
})();