RSE-Sheffield / RSEAdmin

A Resource Allocation and Finance tool for RSE Groups
https://rseadmin.readthedocs.io/en/latest/
MIT License
24 stars 6 forks source link

Missing space in Time Sheet Entry Information modal #117

Closed ptheywood closed 4 years ago

ptheywood commented 4 years ago
info_msg = "All day time sheet entry for '" + info.event.title + "' on the" + moment(info.event.start).format("YYYY-MM-DD");

should be

info_msg = "All day time sheet entry for '" + info.event.title + "' on the " + moment(info.event.start).format("YYYY-MM-DD");

timesheet.html#L297