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}}"
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}}"