diff --git a/CHANGELOG.md b/CHANGELOG.md index 128ea4603..71e888246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added the version to the admin control panel - Added pagination parameters (`skip`, `take`) to the endpoint `GET api/v1/order` +### Changed + +- Harmonized the settings icon of the user account page + ### Fixed - Fixed the sidebar navigation on the user account page diff --git a/apps/client/src/app/pages/user-account/user-account-page.component.ts b/apps/client/src/app/pages/user-account/user-account-page.component.ts index 970dadd6a..80c4a8f72 100644 --- a/apps/client/src/app/pages/user-account/user-account-page.component.ts +++ b/apps/client/src/app/pages/user-account/user-account-page.component.ts @@ -30,7 +30,7 @@ export class UserAccountPageComponent implements OnDestroy, OnInit { this.tabs = [ { - iconName: 'cog-outline', + iconName: 'settings-outline', label: $localize`Settings`, path: ['/account'] },