Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): components/input types not working in zh-CN docs #606

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pages/zh-cn/components/input.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ export const meta = {
scope={{ Input, Spacer }}
code={`
<>
<Input status="secondary" initialValue="次要" />
<Input type="secondary" initialValue="次要" />
<Spacer h={.5} />
<Input status="success" initialValue="成功" />
<Input type="success" initialValue="成功" />
<Spacer h={.5} />
<Input status="warning" initialValue="警告" />
<Input type="warning" initialValue="警告" />
<Spacer h={.5} />
<Input status="error" initialValue="包含错误" />
<Input type="error" initialValue="包含错误" />
</>
`}
/>
Expand Down