diff --git a/client/src/components/Dashboard/DashboardActionViewsList.js b/client/src/components/Dashboard/DashboardActionViewsList.js index 0e42a8b9c..97f0b2836 100644 --- a/client/src/components/Dashboard/DashboardActionViewsList.js +++ b/client/src/components/Dashboard/DashboardActionViewsList.js @@ -24,17 +24,15 @@ export default function DashboardActionViewsList({ onChange && onChange(view); }; - const viewsMenuItems = views.map((view) => { - return ( - handleClickViewItem(view)} text={view.name} /> - ); - }); + const viewsMenuItems = views.map((view) => ( + handleClickViewItem(view)} text={view.name} /> + )); return ( {viewsMenuItems}} minimal={true} - interactionKind={PopoverInteractionKind.HOVER} + interactionKind={PopoverInteractionKind.CLICK} position={Position.BOTTOM_LEFT} >