Description input added

This commit is contained in:
2021-09-30 22:09:13 -03:00
parent 21afd0a024
commit eaeef681b4
6 changed files with 55 additions and 5 deletions

View File

@@ -204,6 +204,13 @@ const ClockifyTasksDisplay = (props) => {
: null
}
</select>
<input
type="text"
onChange={(e) => {props.setTaskName(e.target.value)}}
value={props.taskName}
placeholder="Add task description"
className={props.projectID !== 0 ? null: 'disabled'}
/>
</div>
: null
}