Hi all!
Wanted to check on how do we do conditional formatting for color on adaptive cards for bot composer?
Seems like bot composer only supports version 1.3.
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.3",
"body": [
{
"$data": "${AttendanceMonthly}",
"type": "TextBlock",
"weight": "bolder",
"color": "${if(Month = January, 'attention', 'good')}",
"text": "Hours worked: ${Month}"
}]