I was doing Angular version update from 8 to 12. In which I am getting this build error.
error NG5002: Parser error: Unexpected token {, expected identifier, keyword, or string at column 2 in [{{maxLength}}]}
My component.html error line looks like below
<div>
<span>Characters left: {{maxLength - formInputs.accountStatusReasonComment?.length}}</span>
</div>
Is this expressions have any update in Angular 12? Any idea ?