forked from mirrors/easyappointments
fix display of long unavailability notes
This commit is contained in:
parent
c39dad618e
commit
fa55a4832b
1 changed files with 1 additions and 1 deletions
|
@ -1213,7 +1213,7 @@ App.Utils.CalendarDefaultView = (function () {
|
||||||
let notes = unavailability.notes ? ' - ' + unavailability.notes : '';
|
let notes = unavailability.notes ? ' - ' + unavailability.notes : '';
|
||||||
|
|
||||||
if (unavailability.notes && unavailability.notes.length > 30) {
|
if (unavailability.notes && unavailability.notes.length > 30) {
|
||||||
notes = unavailability.notes.substring(0, 30) + '...';
|
notes = ' - ' + unavailability.notes.substring(0, 30) + '...';
|
||||||
}
|
}
|
||||||
|
|
||||||
const unavailabilityEvent = {
|
const unavailabilityEvent = {
|
||||||
|
|
Loading…
Reference in a new issue