Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
avi-friedman-IL committed Jun 23, 2024
2 parents 4f6ca16 + 8d491f7 commit 489ef9e
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions public/cmps/AddBug.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,9 @@ export function AddBug({ isAddBug }) {
return (
<section className="add-bug">
<form action="" onSubmit={onSaveBug}>
<input
onChange={handleChange}
type="text"
name="title"
value={title}
placeholder="title"
/>
<input
onChange={handleChange}
type="number"
name="severity"
value={severity}
placeholder="severity"
/>
<input
onChange={handleLabelChange}
type="text"
name="labels"
value={labels}
placeholder="labels"
/>
<input onChange={handleChange} type="text" name="title" value={title} placeholder="title"/>
<input onChange={handleChange} type="number" name="severity" value={severity} placeholder="severity"/>
<input onChange={handleLabelChange} type="text" name="labels" value={labels} placeholder="labels"/>

<button className="save-bug">save</button>
</form>
Expand Down

0 comments on commit 489ef9e

Please sign in to comment.