Skip to content

Commit

Permalink
IssueNameForm form element needs a name for proper detection (see: te…
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Baker committed Dec 21, 2023
1 parent a826ab4 commit a4e6a95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PokerTable/IssueNameForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const IssueNameForm = ({ handleIssueSubmit }) => {
setNewIssueName('');
}
return (
<Form onSubmit={handleSubmit}>
<Form name='issue-name-form' onSubmit={handleSubmit}>
<Form.Field>
<label>Open Issues</label>
<input
Expand Down

0 comments on commit a4e6a95

Please sign in to comment.