Browse Source

Minor improvements

pull/4393/head
Thomas Kaul 1 month ago
parent
commit
1f53439968
  1. 8
      apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts

8
apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts

@ -33,10 +33,6 @@ export class ShowAccessTokenDialog {
private dataService: DataService
) {}
public enableCreateAccountButton() {
this.isCreateAccountButtonDisabled = false;
}
public createAccount() {
this.dataService
.postUser()
@ -52,6 +48,10 @@ export class ShowAccessTokenDialog {
});
}
public enableCreateAccountButton() {
this.isCreateAccountButtonDisabled = false;
}
public onChangeDislaimerChecked() {
this.isDisclaimerChecked = !this.isDisclaimerChecked;
}

Loading…
Cancel
Save