We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

How to remove Original value label from description

Not applicable

Anyone know how to to remove this Original Value label in case description field (yellow highlighted)

 

orginal value.png

1 REPLY 1

Omkar Mone
Mega Sage

You may want to do some manipulations before putting it to comments. something like this will help - 

 

var sampleString = "Company: Autodesk (original value: 3444)";

var updatedString = sampleString.replace(/\(original value: \d+\)/g, '');

updatedString = updatedString.trim();

 

Do give it a try and let me know