diff --git a/src/components/popover/popover.ts b/src/components/popover/popover.ts index be42ffbfcd4..944aff4e3fe 100644 --- a/src/components/popover/popover.ts +++ b/src/components/popover/popover.ts @@ -339,6 +339,11 @@ class PopoverTransition extends Transition { var arrowWidth = arrowDim.width; var arrowHeight = arrowDim.height; + // If no ev was passed, hide the arrow + if (!targetDim) { + arrowEle.style.display = 'none'; + } + let arrowCSS = { top: targetTop + targetHeight, left: targetLeft + (targetWidth / 2) - (arrowWidth / 2)