1. What is the issue? Please be detailed.
I want to display several variables in a note similar to what is explained here. When pasted into a single cell of the label column, this code displays properly in 4 lines as shown in this screenshot
Prop Priority (4 Highest): ${calc_prop_priority_disp}
Newly Propagated: ${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status}
Nursery not new: ${calc_nursery_alive_count} ${calc_nursery_alive_count_status}
Transplanted Alive: ${calc_transplanted_alive_count} ${calc_transplanted_alive_count_status}
ScreenshotAbove
However, I would like to reverse the order to show the variables first followed by a colon with the string description coming afterward. For reference, each line has two variables, one is a count and the other a status. The count is an integer and the status is a colored circle emoji. When reversing the order, it automatically puts line breaks after the second variable and therefore displays everything weird and in 7 lines like this:
INCORRECT
Am I missing something basic here?
2. What steps can we take to reproduce this issue?
3. What have you tried to fix the issue?
All of these show up identically like the INCORRECT screenshot above:
One line using <br/> for line breaks
${calc_prop_priority_disp}:Prop Priority (4 Highest) <br/> ${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated<br/> ${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new<br/> ${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive
Multiple Lines with <br/>
${calc_prop_priority_disp}:Prop Priority (4 Highest) <br/>
${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated<br/>
${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new<br/>
${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive
Multiple Lines w/o <br/>
${calc_prop_priority_disp}:Prop Priority (4 Highest)
${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated
${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new
${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive
4. Upload any forms or screenshots you can share publicly below.


