Skip to content

Commit

Permalink
Update modal texts
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingBrandonL committed Apr 11, 2024
1 parent cc499b6 commit ed424e4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/webPages/family.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const FamilyPage = () => {
onClose={handleCreateFamClose}
>
<Box sx={style}>
Enter name for new Family below.
Enter name for Family below.
<TextField id="textField" label="Name" onChange={ e => createFamRef.current = e.target.value}>

</TextField>
Expand All @@ -233,7 +233,7 @@ const FamilyPage = () => {
onClose={handleCreateMechanismClose}
>
<Box sx={style}>
Enter name for new Mechanism below.
Enter name for Mechanism below.
<TextField id="textField" label="Name" onChange={ e => createMechanismRef.current = e.target.value}>

</TextField>
Expand Down
2 changes: 1 addition & 1 deletion src/webPages/familyMechanism.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const FamilyMechanismPage = () => {
onClose={handleCreateTagMechClose}
>
<Box sx={style}>
Enter name for new Tag Mechanism below.
Enter name for Tag Mechanism below.
<TextField id="textField" label="Tag" onChange={ e => createTagMechRef.current = e.target.value}>

</TextField>
Expand Down
4 changes: 2 additions & 2 deletions src/webPages/mechanisms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const MechanismPage = () => {
onClose={handleCreateMechanismClose}
>
<Box sx={style}>
Enter name for new Mechanism below.
Enter name for Mechanism below.
<TextField id="textField" label="Name" onChange={ e => createMechanismRef.current = e.target.value}>

</TextField>
Expand All @@ -229,7 +229,7 @@ const MechanismPage = () => {
onClose={handleCreateTagMechClose}
>
<Box sx={style}>
Enter name for new Tag Mechanism below.
Enter name for Tag Mechanism below.
<TextField id="textField" label="Tag" onChange={ e => createTagMechRef.current = e.target.value}>

</TextField>
Expand Down
10 changes: 5 additions & 5 deletions src/webPages/reactions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ const ReactionsPage = () => {
onClose={handleCreateReactionClose}
>
<Box sx={style}>
Enter type for new Reaction below.
Enter type for Reaction below.
<TextField id="textField" label="Name" onChange={ e => createReactionRef.current = e.target.value}>

</TextField>
Expand Down Expand Up @@ -388,13 +388,13 @@ const ReactionsPage = () => {
onClose={handleCreatePropertyClose}
>
<Box sx={style}>
Enter name for new Property Name below.
Enter name for Property below.
<TextField id="textField" label="PropertyName" onChange={ e => createPropertyNameRef.current = e.target.value}/>
<p></p>
Enter units for new Property's Units below.
Enter units for Property below.
<TextField id="textField" label="PropertyUnits" onChange={ e => createPropertyUnitsRef.current = e.target.value}/>
<p></p>
Select type for new value's type below.
Select type for value below.
<Select
labelId="propertyTypeLabel"
id="propertyType"
Expand All @@ -408,7 +408,7 @@ const ReactionsPage = () => {
<MenuItem value="float">Scientific Number</MenuItem>
</Select>
<p></p>
Enter value for new Property value below.
Enter value for Property below.
<TextField id="textField" label="PropertyValue" onChange={ e => createPropertyVersionValueRef.current = e.target.value}/>
<Button onClick={handleCreatePropertyClick}>
Submit
Expand Down
10 changes: 5 additions & 5 deletions src/webPages/species.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const SpeciesPage = () => {
onClose={handleCreateSpeciesClose}
>
<Box sx={style}>
Enter name for new Species below.
Enter name for Species below.
<TextField id="textField" label="Name" onChange={ e => createSpeciesRef.current = e.target.value}>

</TextField>
Expand All @@ -263,13 +263,13 @@ const SpeciesPage = () => {
onClose={handleCreatePropertyClose}
>
<Box sx={style}>
Enter name for new Property Name below.
Enter name for Property below.
<TextField id="textField" label="PropertyName" onChange={ e => createPropertyNameRef.current = e.target.value}/>
<p></p>
Enter units for new Property's Units below.
Leave empty or enter units for Property below.
<TextField id="textField" label="PropertyUnits" onChange={ e => createPropertyUnitsRef.current = e.target.value}/>
<p></p>
Select type for new value's type below.
Select type for value below.
<Select
labelId="propertyTypeLabel"
id="propertyType"
Expand All @@ -283,7 +283,7 @@ const SpeciesPage = () => {
<MenuItem value="float">Scientific Number</MenuItem>
</Select>
<p></p>
Enter value for new Property value below.
Enter value for Property below.
<TextField id="textField" label="PropertyValue" onChange={ e => createPropertyVersionValueRef.current = e.target.value}/>
<Button onClick={handleCreatePropertyClick}>
Submit
Expand Down

0 comments on commit ed424e4

Please sign in to comment.