From 05e80af654b837e310f003a1822606f5c85a4f62 Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 13 Apr 2021 15:11:50 -0600 Subject: [PATCH] * Calendar: Fix missing line breaks in event tooltip --- calendar/js/et2_widget_event.js | 3 +-- calendar/js/et2_widget_event.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/calendar/js/et2_widget_event.js b/calendar/js/et2_widget_event.js index a5ebe1b7aa..e322c28e00 100644 --- a/calendar/js/et2_widget_event.js +++ b/calendar/js/et2_widget_event.js @@ -452,8 +452,7 @@ var et2_calendar_event = /** @class */ (function (_super) { this.icons[0].outerHTML + '' + '
' + - '

' + - '

' + egw.htmlspecialchars(this.options.value.title) + '


' + + '

' + egw.htmlspecialchars(this.options.value.title) + '


' + egw.htmlspecialchars(this.options.value.description) + '

' + '

' + times + '

' + location + diff --git a/calendar/js/et2_widget_event.ts b/calendar/js/et2_widget_event.ts index 6daff1edb9..6b4fd075af 100644 --- a/calendar/js/et2_widget_event.ts +++ b/calendar/js/et2_widget_event.ts @@ -573,8 +573,7 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached this.icons[0].outerHTML+ '
'+ '
'+ - '

'+ - '

'+egw.htmlspecialchars(this.options.value.title)+'


'+ + '

'+egw.htmlspecialchars(this.options.value.title)+'


'+ egw.htmlspecialchars(this.options.value.description)+'

'+ '

'+times+'

'+ location +