Skip to content

Commit

Permalink
Fixed JobLauncher string error and added ability to build a system (#344
Browse files Browse the repository at this point in the history
)

* Added ability to build a system through Tapis UI

* ran prettier and fixed linting issues

* added a comment to the effectiveUserId

* fixed JobLauncher taking in inputs as string and not  number

---------

Co-authored-by: Steven Oh <[email protected]>
Co-authored-by: Steven Oh <[email protected]>
  • Loading branch information
3 people authored Nov 2, 2023
1 parent 28b5672 commit c8ee663
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,24 +223,28 @@ const ExecSystemQueueOptions: React.FC = () => {
label="Node Count"
description="The number of nodes to use for this job"
required={false}
type="number"
/>
<FormikInput
name="coresPerNode"
label="Cores Per Node"
description="The number of cores to use per node"
required={false}
type="number"
/>
<FormikInput
name="memoryMB"
label="Memory, in Megabytes"
description="The amount of memory to use per node in megabytes"
required={false}
type="number"
/>
<FormikInput
name="maxMinutes"
label="Maximum Minutes"
description="The maximum amount of time in minutes for this job"
required={false}
type="number"
/>
</Collapse>
);
Expand Down

0 comments on commit c8ee663

Please sign in to comment.