From 6263d45268684036cab563bda01d73f90923f70f Mon Sep 17 00:00:00 2001 From: Joe Gambino Date: Wed, 3 Nov 2021 17:50:11 -0700 Subject: [PATCH] Update popover menu check to use isEmpty --- src/components/PopoverMenu/BasePopoverMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PopoverMenu/BasePopoverMenu.js b/src/components/PopoverMenu/BasePopoverMenu.js index 82e0727c163b..2b4c926168aa 100644 --- a/src/components/PopoverMenu/BasePopoverMenu.js +++ b/src/components/PopoverMenu/BasePopoverMenu.js @@ -37,7 +37,7 @@ class BasePopoverMenu extends PureComponent { animationOut={this.props.animationOut} > - {this.props.headerText && ( + {!_.isEmpty(this.props.headerText) && (