Merge pull request #56 from harad1/new-event-validation
Basic validation for New Event Type to prevent unexpected behaviour
This commit is contained in:
commit
6b3ba4edae
1 changed files with 4 additions and 2 deletions
|
@ -61,8 +61,9 @@ export default function Availability(props) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(response);
|
if (enteredTitle && enteredLength) {
|
||||||
Router.reload();
|
Router.reload();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function updateStartEndTimesHandler(event) {
|
async function updateStartEndTimesHandler(event) {
|
||||||
|
@ -217,6 +218,7 @@ export default function Availability(props) {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{/* TODO: Add an error message when required input fields empty*/}
|
||||||
<div className="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
|
<div className="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
|
||||||
<button type="submit" className="btn btn-primary">
|
<button type="submit" className="btn btn-primary">
|
||||||
Create
|
Create
|
||||||
|
|
Loading…
Reference in a new issue