Browse Source
Feature/change access tab icon on account page (#4137)
* Change icon
* Update changelog
pull/4142/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/user-account/user-account-page.component.ts
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the usability of the link to manage access with a new icon |
|
|
- Improved support to import activities by `isin` in the _Yahoo Finance_ service |
|
|
- Improved support to import activities by `isin` in the _Yahoo Finance_ service |
|
|
- Improved the language localization for Polish (`pl`) |
|
|
- Improved the language localization for Polish (`pl`) |
|
|
|
|
|
|
|
|
|
@ -42,7 +42,7 @@ export class UserAccountPageComponent implements OnDestroy, OnInit { |
|
|
showCondition: !!this.user?.subscription |
|
|
showCondition: !!this.user?.subscription |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
iconName: 'share-social-outline', |
|
|
iconName: 'key-outline', |
|
|
label: $localize`Access`, |
|
|
label: $localize`Access`, |
|
|
path: ['/account', 'access'] |
|
|
path: ['/account', 'access'] |
|
|
} |
|
|
} |
|
|