Parser Error: Got interpolation ({{}}) where expression was expected

You can’t use interpolation inside standard property binding. There should be an expression.

Seems it should be:

[attr.aria-labelledby]="'desiredSkill' + $index"

or

attr.aria-labelledby="desiredSkill{{$index}}"

Leave a Comment