Skip to content

Commit

Permalink
fix issue #66
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammed Mushtaha committed Jun 4, 2017
1 parent fbd1b4c commit c8c576f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/frontEnd/components/MyReservation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const MyReservation = ({userReservations, deleteEvent,updateEvent, bookings})=>{
)
:(
<div className="alert alert-info col-md-4" style={{marginTop: '20px', padding:'0'}}>
<h4 style={{marginTop: '20px', marginLeft:'20px'}}><strong>Info!</strong> You don't have any bookings.</h4>
<h4 style={{marginTop: '20px', marginLeft:'20px'}}>You don't have any bookings currently</h4>
</div>
)
}
Expand Down
3 changes: 2 additions & 1 deletion src/frontEnd/components/Rooms.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Rooms.propTypes = {
onClick: PropTypes.func,
rooms: PropTypes.array,
selectRoom: PropTypes.func,
getEvent: PropTypes.func
getEvent: PropTypes.func,
clearEvents: PropTypes.func
};
export default Rooms;

0 comments on commit c8c576f

Please sign in to comment.