Skip to content

Commit

Permalink
fix(console): Member button should go to Overview page (#1124)
Browse files Browse the repository at this point in the history
fix: Member button should go to Overview page
  • Loading branch information
waynelwz authored Sep 5, 2022
1 parent 597f16a commit 7f32512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/src/pages/Project/ProjectListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ const ProjectCard = ({ project, onEdit }: IProjectCardProps) => {
</div>
<div className={styles.statisticsItem}>
<IconLink
to={`/projects/${project.id}/members`}
to={`/projects/${project.id}/overview`}
style={{ backgroundColor: 'transparent', color: 'rgba(2,16,43,0.60)' }}
tooltip={{
content: `${t('Members')}:${project?.statistics.memberCounts}`,
Expand Down

0 comments on commit 7f32512

Please sign in to comment.