Skip to content

Commit

Permalink
Merge pull request ant-design#19 from kaoding/master
Browse files Browse the repository at this point in the history
规范化提交
  • Loading branch information
chenshuai2144 authored Jun 1, 2019
2 parents 46f69af + f14244e commit 30931e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AccountCenter/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent<
<div className={styles.team}>
<div className={styles.teamTitle}>团队</div>
<Row gutter={36}>
{currentUser.notice.map(item => (
{currentUser.notice && currentUser.notice.map(item => (
<Col key={item.id} lg={24} xl={12}>
<Link to={item.href}>
<Avatar size="small" src={item.logo} />
Expand Down
2 changes: 1 addition & 1 deletion UserRegister/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component<
>
<FormattedMessage id="BLOCK_NAME.register.register" />
</Button>
<Link className={styles.login} to="/User/Login">
<Link className={styles.login} to="/user/login">
<FormattedMessage id="BLOCK_NAME.register.sign-in" />
</Link>
</FormItem>
Expand Down

0 comments on commit 30931e3

Please sign in to comment.