Skip to content

Commit 11ca78e

Browse files
committed
Convert application template fields to use mat-label
- Change from placeholder to mat-label for Name, URL, Icon Path - Consistent with other form fields across the application
1 parent a0af3f6 commit 11ca78e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/components/admin-app/admin-app-template-search/admin-template-details/admin-template-details.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,29 @@
55

66
<div class="d-flex flex-column">
77
<mat-form-field>
8+
<mat-label>Name</mat-label>
89
<input
910
matInput
10-
placeholder="Name"
1111
tabIndex="1"
1212
name="name"
1313
[(ngModel)]="appTemplate.name"
1414
(change)="editAppTemplate()"
1515
/>
1616
</mat-form-field>
1717
<mat-form-field>
18+
<mat-label>URL</mat-label>
1819
<input
1920
matInput
20-
placeholder="Url"
2121
tabIndex="2"
2222
name="url"
2323
[(ngModel)]="appTemplate.url"
2424
(change)="editAppTemplate()"
2525
/>
2626
</mat-form-field>
2727
<mat-form-field>
28+
<mat-label>Icon Path</mat-label>
2829
<input
2930
matInput
30-
placeholder="icon"
3131
tabIndex="3"
3232
name="icon"
3333
[(ngModel)]="appTemplate.icon"

0 commit comments

Comments
 (0)