Skip to content

Commit

Permalink
fixed template
Browse files Browse the repository at this point in the history
  • Loading branch information
sumit-singhania committed Jul 15, 2022
1 parent 8171a39 commit 672f870
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/users/users.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h1>List of Users</h1>
{{user.phoneNumber}}
</div>
<div *ngIf="user.isEdit">
input type="text" [(ngModel)]="user.phoneNumber" class="form-control"/>
<input type="text" [(ngModel)]="user.phoneNumber" class="form-control"/>
</div>


Expand All @@ -98,7 +98,7 @@ <h1>List of Users</h1>
{{user.role}}
</div>
<div *ngIf="user.isEdit">
input type="text" [(ngModel)]="user.role" class="form-control"/>
<input type="text" [(ngModel)]="user.role" class="form-control"/>
</div>

</td>
Expand All @@ -108,7 +108,7 @@ <h1>List of Users</h1>
</div>
<div *ngIf="user.isEdit">

input type="text" [(ngModel)]="user.address" class="form-control"/>
<input type="text" [(ngModel)]="user.address" class="form-control"/>
</div>
</td>
<td>
Expand Down

0 comments on commit 672f870

Please sign in to comment.