Skip to content

Commit

Permalink
formatMassage id is error (umijs#3077)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohuoni authored Aug 28, 2019
1 parent 8a2fec6 commit 740e6dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ImportProject: React.SFC<IProjectProps> = props => {
return (
<section className={common.section}>
<div style={{ maxWidth: 600, margin: '0 auto' }}>
<h2>导入</h2>
<h2> {formatMessage({ id: 'org.umi.ui.global.project.import.title' })} </h2>
<Form
form={form}
layout="vertical"
Expand All @@ -54,7 +54,7 @@ const ImportProject: React.SFC<IProjectProps> = props => {
</Form.Item>
<Form.Item>
<Button htmlType="submit" type="primary">
{formatMessage({ id: '确定' })}
{formatMessage({ id: 'org.umi.ui.global.okText' })}
</Button>
</Form.Item>
</Form>
Expand Down

0 comments on commit 740e6dd

Please sign in to comment.