From 8b2d62d27a8f1b100ebab2ea0a5458783ad86de8 Mon Sep 17 00:00:00 2001 From: yuri Date: Mon, 1 Oct 2018 11:13:25 +0300 Subject: [PATCH 1/2] css navbar fix --- frontend/less/espo-vertical/layout.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/less/espo-vertical/layout.less b/frontend/less/espo-vertical/layout.less index b4dd37768d..8883b747a7 100644 --- a/frontend/less/espo-vertical/layout.less +++ b/frontend/less/espo-vertical/layout.less @@ -47,6 +47,10 @@ body > #header ul.tabs > li span.short-label > span { body > #header ul.tabs > li > a > span.full-label { display: inline; + text-overflow: ellipsis; + max-width: ~"calc(100% - 50px)"; + overflow: hidden; + white-space: nowrap; } body > #header .navbar-brand span.home-icon { From 950d98528a06bd091e5b007acaa504079014f5e9 Mon Sep 17 00:00:00 2001 From: yuri Date: Mon, 1 Oct 2018 13:45:28 +0300 Subject: [PATCH 2/2] fic ics summary --- application/Espo/Modules/Crm/Business/Event/Ics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Modules/Crm/Business/Event/Ics.php b/application/Espo/Modules/Crm/Business/Event/Ics.php index 8037966fce..cac18b366a 100644 --- a/application/Espo/Modules/Crm/Business/Event/Ics.php +++ b/application/Espo/Modules/Crm/Business/Event/Ics.php @@ -176,7 +176,7 @@ class Ics "BEGIN:VEVENT\n". "DTSTART:".$this->dateToCal($this->startDate)."\n". "DTEND:".$this->dateToCal($this->endDate)."\n". - "SUMMARY:New ".$this->escapeString($this->summary)."\n". + "SUMMARY:".$this->escapeString($this->summary)."\n". "LOCATION:".$this->escapeString($this->address)."\n". "ORGANIZER;CN=".$this->escapeString($this->who).":MAILTO:" . $this->escapeString($this->email)."\n". "DESCRIPTION:".$this->escapeString($this->formatMultiline($this->description))."\n".