Skip to content

Commit

Permalink
Runner -> Instances
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim authored Sep 19, 2024
1 parent 9ff077c commit d96ad5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/runner_cell/src/Pool.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Pool = ({ fields, handleChange, handleBlur }) => (
<TextField
type="number"
name="min"
label="Min runners"
label="Min instances"
value={fields.min}
onChange={(event) => handleChange(event, false)}
onBlur={handleBlur}
Expand All @@ -19,7 +19,7 @@ const Pool = ({ fields, handleChange, handleBlur }) => (
<TextField
type="number"
name="max"
label="Max runners"
label="Max instances"
value={fields.max}
onChange={(event) => handleChange(event, false)}
onBlur={handleBlur}
Expand Down

0 comments on commit d96ad5c

Please sign in to comment.