Skip to content

Commit

Permalink
resolve typo on disk overallocation field
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Nov 11, 2023
1 parent 4d08de5 commit d8618cb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions resources/scripts/components/admin/nodes/CreateNodeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import TextInputForm from '@/components/elements/forms/TextInputForm'

import LocationsSelectForm from '@/components/admin/nodes/LocationsSelectForm'


interface Props {
open: boolean
onClose: () => void
Expand Down Expand Up @@ -151,7 +150,7 @@ const CreateNodeModal = ({ open, onClose }: Props) => {
/>
<TextInputForm
name='diskOverallocate'
label={`${t('disk_allocation')} (MiB)`}
label={`${t('disk_overallocation')} (%)`}
/>
</div>
<div className='grid gap-3 grid-cols-3'>
Expand Down Expand Up @@ -194,4 +193,4 @@ const CreateNodeModal = ({ open, onClose }: Props) => {
)
}

export default CreateNodeModal
export default CreateNodeModal

0 comments on commit d8618cb

Please sign in to comment.