Skip to content

Commit

Permalink
Merge branch 'develop' into fix/revert-team-beratung-overview-advice-…
Browse files Browse the repository at this point in the history
…seeker
  • Loading branch information
CarlosSoares authored May 12, 2023
2 parents 3ead565 + 0da9f16 commit f190b44
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/profile/profile.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ const profileRoutes = (
{
component: ConsultantStatistics,
condition: () =>
tenant === null ||
!!tenant?.settings?.featureStatisticsEnabled,
column: COLUMN_LEFT
}
Expand Down Expand Up @@ -212,9 +213,11 @@ const profileRoutes = (
elements: [
{
component: AbsenceFormular,
column: tenant?.settings?.featureStatisticsEnabled
? COLUMN_RIGHT
: COLUMN_LEFT
column:
tenant === null ||
tenant?.settings?.featureStatisticsEnabled
? COLUMN_RIGHT
: COLUMN_LEFT
}
]
}
Expand Down

0 comments on commit f190b44

Please sign in to comment.