I'm trying to bind a class name on a label to a variable, however the injected text isn't the variable value, but the unparsed expression text.
Variable Status
with value = 'Draft'
Expression on class name: ${Status}
Result: <label (...) class="${Status}" (...)></label>
Is this the expected behavior, or am I doing something wrong?
Thanks