Skip to content

Commit

Permalink
docs: add jvm tips for #4
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Apr 3, 2022
1 parent 104ec9d commit 16c0232
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions archguard/src/pages/home/components/SystemInfoForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ const SystemInfoForm = (props: SystemInfoFormProps, ref: any) => {
style={{ display: current === 0 ? 'initial' : 'none' }}
>
<Select>
{["Jvm", "TypeScript", "Golang", "Python", "C#", "JavaScript", "Kotlin", "Java"].map((value) => (
<Select.Option value={value} key={value}>
{value}
{ ["Java", "Kotlin", "TypeScript", "Golang", "Python", "C#", "JavaScript", "Jvm"].map((value) => (
<Select.Option value={ value } key={ value }>
{ value === "Jvm" ? "JVM(不推荐)" : value }
</Select.Option>
))}
)) }
</Select>
</Form.Item>
<Form.List name="repo">
Expand Down

0 comments on commit 16c0232

Please sign in to comment.