@bytebrand/fe-ui-core 4.1.19 → 4.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.19",
3
+ "version": "4.1.20",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -37,7 +37,7 @@
37
37
  font-size: 12px
38
38
  color: $grey-3
39
39
  text-decoration: none
40
- vertical-align: middle
40
+ // vertical-align: middle
41
41
 
42
42
  &::after
43
43
  position: absolute
@@ -66,7 +66,8 @@ const BreadcrumbsFactory: IBreadcrumbsFactoryConfig = {
66
66
 
67
67
  PROFILE_SETTINGS: (props: any) => ({
68
68
  list: [
69
- { link: '', title: props.t('common:breadcrumbs.MySettings') }
69
+ { link: '/account/dashboard', title: props.t('common:breadcrumbs.DashboardNew') },
70
+ { link: '', title: props.t('common:breadcrumbs.Profile') }
70
71
  ]
71
72
  }),
72
73