So I have a list with a comment column. I would like to hover over it, and have its information displayed in a card. However I used the code below
{
"elmType": "div",
"style": {
"font-size": "12px"
},
"txtContent": "[$Comment]",
"customCardProps": {
"formatter": {
"elmType": "div",
"txtContent": "[$Comment]"
},
"openOnEvent": "hover",
"directionalHint": "bottomCenter",
"isBeakVisible": true,
"beakStyle" : {
"backgroundColor": "white"
}
}
}
and the problem I am having, is inside the comment column now, a div tag is displayed. Before the column would say "needs adjusting" but now it says "<div class="ExternalClass/>"needs adjusting" why is the div tag being displayed now?