Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

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