From ad5ae938ef6c7581900d8a4561cb61bf550eebe7 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:29:33 +0200 Subject: [PATCH] Feature/harmonize settings icon of user account page (#2412) * Harmonize icon * Update changelog --- CHANGELOG.md | 4 ++++ .../src/app/pages/user-account/user-account-page.component.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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'] },