Skip to content

Commit

Permalink
Update edit-user.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel authored Oct 13, 2023
1 parent 8c5f2ef commit 9ec0a6a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/app/user/edit-user/edit-user.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ export class EditUserComponent implements OnChanges {
public user: User = new User();

public showPassword = false;

togglePasswordVisibility() {
this.showPassword = !this.showPassword;
}

public alertClosed: boolean = true;
public alertType: string = "danger";
public alertText: string = "";
Expand Down Expand Up @@ -125,4 +120,8 @@ export class EditUserComponent implements OnChanges {
}
)
}

public togglePasswordVisibility() {
this.showPassword = !this.showPassword;
}
}

0 comments on commit 9ec0a6a

Please sign in to comment.