I have the following angular template. I noticed that even when the labels are in titlecase when the page is rendered the labels are converted to uppercase and I don't like it. So I decided to use the titlecase pipe and surround the label text with single quotes. However, the labels are still in uppercase (image attached for reference)
I guess this is something that should be straightforward but I don't know how to make it work. Any ideas?
<form [formGroup]="updateForm" (ngSubmit)="onSubmit(updateForm.value)">
<div>
<label for="total">
{{'Total' | titlecase}}
</label>
<input id="total" type="text" formControlName="total">
</div>
<div>
<label for="supporters">
{{'Number of supporters' | titlecase}}
</label>
<input id="supporters" type="text" formControlName="supporters">
</div>
<button class="button" type="submit">Save</button>
</form>