Incorrect Display of True/False Field Values in the Activity Stream and display 0 or 1 ValuesIssue The system displays values as 0 or 1 instead of true/false in the Activity Stream section. The custom choices values true/false display correctly on the field, but show as 0 or1 in activity stream.ReleaseAllCauseThe implementation uses a choice field for a dictionary type 'True/False' field, which is not an expected configuration. The platform does not treat choice fields as booleans, and choice fields store as string values. The system displays the underlying numerical values (0 or 1) in the Activity log instead of the intended labels (true/false).Resolution1. Create a new dictionary entry of type 'String' for the field in question.2. Add the desired choices (e.g., 'true' and 'false') to the new String-type field.3. Update the form and related configurations to use the new String-type field instead of the existing choice field.This resolution addresses the issue by ensuring the field stores string values instead of numerical representations.