diff --git a/NEWS b/NEWS index 1386162b2..caf72ebda 100644 --- a/NEWS +++ b/NEWS @@ -27,6 +27,7 @@ Bug fixes - [web] fixed ripple blocking the form when submitting no values (#3808) - [web] fixed error handling when renaming a mailbox - [web] handle binary content transfer encoding when displaying mails + - [web] removed resize grips to short events (#3771) - [core] strip protocol value from proxyAddresses attribute (#3182) - [core] we now search in all domain sources for Apple Calendar - [core] properly handle groups in Apple Calendar's delegation diff --git a/UI/WebServerResources/js/Scheduler/sgDraggableCalendarBlock.directive.js b/UI/WebServerResources/js/Scheduler/sgDraggableCalendarBlock.directive.js index 3a6579832..4e0d98079 100644 --- a/UI/WebServerResources/js/Scheduler/sgDraggableCalendarBlock.directive.js +++ b/UI/WebServerResources/js/Scheduler/sgDraggableCalendarBlock.directive.js @@ -45,6 +45,9 @@ var component, dayIndex, blockIndex, isFirstBlock, isLastBlock, dragGrip, leftGrip, rightGrip, topGrip, bottomGrip; + // Don't show grips for blocks of less than 45 minutes + if (scope.block.length < 3) return; + component = scope.block.component; dayIndex = scope.block.dayIndex; blockIndex = _.findIndex(component.blocks, ['dayIndex', dayIndex]);