Hello everyone I have this problem related to Angular.
inside my skills.component.ts .
@Input() testfield ="";
inside skills.component.html
style="padding: 0 10%"
class="row align-items-center">
<p id="skill"
class="col-2"
style="font-family: Mulish-Bold, serif; font-size: 1.2rem; text-align: end;"
>
{{testfield}}
</p>
<p class="col-7" id="bar">
<ngb-progressbar
type="success"
[value]="50">
</ngb-progressbar>
</p>
</div>
and inside the component that uses this app-skill-bar .
<app-section-title color="#84142D" icon="bi bi-star-fill" title="Skills"></app-section-title>
<app-skill-bar testfield="Android"></app-skill-bar>
</div>
the problem is that angular can't take "Android" as value for testfield. also, it doesn't desplay Android.

