Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
bistaastha committed Nov 26, 2024
1 parent 5f7690c commit 6f59a21
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions android/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions android/.idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<app-password-check-tooltip
*ngIf="showPasswordTooltip"
[password]="fg.controls.password.value"
(isPasswordValid)="onPasswordValid($event)"
></app-password-check-tooltip>
</div>
<div
Expand Down Expand Up @@ -84,11 +85,6 @@
></ion-icon>
</div>
</div>
<app-password-check-tooltip
*ngIf="false"
[password]="fg.controls.password.value"
(isPasswordValid)="onPasswordValid($event)"
></app-password-check-tooltip>
</div>
</form>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export class InvitedUserPage implements OnInit {
}

onPasswordValid(isValid: boolean): void {
console.log(isValid);
this.isPasswordValid = isValid;
}

Expand Down

0 comments on commit 6f59a21

Please sign in to comment.