Browse Source
Task/improve usability of create watchlist item dialog (#7559)
* Set initial focus to search field
* Update changelog
pull/7522/head
Thomas Kaul
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
1 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-watchlist/home-watchlist.component.ts
|
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the usability of the create watchlist item dialog by setting the initial focus to the search field |
|
|
- Migrated the abstract _Material_ form field from a component to a directive |
|
|
- Migrated the abstract _Material_ form field from a component to a directive |
|
|
|
|
|
|
|
|
## 3.43.0 - 2026-08-06 |
|
|
## 3.43.0 - 2026-08-06 |
|
|
|
|
|
@ -146,7 +146,6 @@ export class GfHomeWatchlistComponent implements OnInit { |
|
|
GfCreateWatchlistItemDialogComponent, |
|
|
GfCreateWatchlistItemDialogComponent, |
|
|
CreateWatchlistItemDialogParams |
|
|
CreateWatchlistItemDialogParams |
|
|
>(GfCreateWatchlistItemDialogComponent, { |
|
|
>(GfCreateWatchlistItemDialogComponent, { |
|
|
autoFocus: false, |
|
|
|
|
|
data: { |
|
|
data: { |
|
|
deviceType: this.deviceType(), |
|
|
deviceType: this.deviceType(), |
|
|
locale: this.user?.settings?.locale ?? DEFAULT_LOCALE |
|
|
locale: this.user?.settings?.locale ?? DEFAULT_LOCALE |
|
|
|