Browse Source
Bugfix/submit form of login with access token dialog with enter key press (#5751)
* Fix form submit with enter key press
* Update changelog
pull/5814/head
jjs2099
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
31 additions and
27 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html
|
|
|
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the enter key press to submit the form of the login with access token dialog |
|
|
|
- Fixed an issue in the database seeding process caused by unresolved environment variables in `DATABASE_URL` |
|
|
|
|
|
|
|
## 2.209.0 - 2025-10-18 |
|
|
|
|
|
|
|
@ -2,13 +2,14 @@ |
|
|
|
|
|
|
|
<div class="py-3" mat-dialog-content> |
|
|
|
<div class="align-items-center d-flex flex-column"> |
|
|
|
<form class="w-100" (ngSubmit)="onLoginWithAccessToken()"> |
|
|
|
<form class="w-100"> |
|
|
|
<mat-form-field appearance="outline" class="without-hint w-100"> |
|
|
|
<mat-label i18n>Security Token</mat-label> |
|
|
|
<input |
|
|
|
matInput |
|
|
|
[formControl]="accessTokenFormControl" |
|
|
|
[type]="isAccessTokenHidden ? 'password' : 'text'" |
|
|
|
(keydown.enter)="onLoginWithAccessToken(); $event.preventDefault()" |
|
|
|
/> |
|
|
|
<button |
|
|
|
mat-button |
|
|
|
@ -21,7 +22,7 @@ |
|
|
|
/> |
|
|
|
</button> |
|
|
|
</mat-form-field> |
|
|
|
</form> |
|
|
|
|
|
|
|
@if (data.hasPermissionToUseSocialLogin) { |
|
|
|
<div class="my-3 text-center text-muted" i18n>or</div> |
|
|
|
<div class="d-flex flex-column"> |
|
|
|
@ -48,8 +49,10 @@ |
|
|
|
> |
|
|
|
</div> |
|
|
|
} |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div mat-dialog-actions> |
|
|
|
<div class="flex-grow-1"> |
|
|
|
<mat-checkbox color="primary" i18n (change)="onChangeStaySignedIn($event)" |
|
|
|
|