Skip to content

Commit

Permalink
app: Reduce the maximum number of CPU cores (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rustin170506 authored Jun 29, 2023
1 parent bd134e6 commit ae0850f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/addInstanceModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function AddInstanceModal({
>
<InputNumber
min={1}
max={32}
max={16}
addonBefore={<BsFillCpuFill />}
addonAfter="Core"
/>
Expand Down
2 changes: 1 addition & 1 deletion app/components/updateInstanceModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function UpdateInstanceModal({
>
<InputNumber
min={1}
max={32}
max={16}
addonBefore={<BsFillCpuFill />}
addonAfter="Core"
/>
Expand Down

0 comments on commit ae0850f

Please sign in to comment.