Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Configure Field changes in activity section

YashaswiniU
Tera Contributor

YashaswiniU_0-1734713154927.png


Hi, I'm unable to configure Field changes to Field Changes in activities, i want to capitalize 'C' and i want to make these changes in Business Application form. Seeking for guidance.

1 REPLY 1

Chaitanya ILCR
Mega Patron

Hi @YashaswiniU ,

try this onload client script with isolate script as unchecked.

function onLoad() {
    try {
        var temp = Array.from(document.getElementsByClassName('sn-card-component-time'));
        temp.forEach(function(item) {
            var el = item['childNodes'][0];
            if (el.innerHTML == 'Field changes') {
                el.innerHTML = 'Field Changes';
            }
        });
    } catch (err) {
        console.log(err);
    }

}


 

Please mark the answer as helpful and correct if helped. 

Regards,

Chaitanya