From c9d5cf5aa4be84f1b58f25ca31d10dd0c122c0be Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Wed, 8 Jul 2020 17:02:29 +0200 Subject: [PATCH] Fix Dropdown Item import --- src/ic/ic-action.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ic/ic-action.js b/src/ic/ic-action.js index 6a9e591..51d2cd2 100644 --- a/src/ic/ic-action.js +++ b/src/ic/ic-action.js @@ -16,7 +16,7 @@ ******************************************************************************/ import React from 'react'; -import { Button, ButtonToolbar, DropdownButton, DropdownItem } from 'react-bootstrap'; +import { Button, ButtonToolbar, DropdownButton, Dropdown } from 'react-bootstrap'; class ICAction extends React.Component { constructor(props) { @@ -49,9 +49,9 @@ class ICAction extends React.Component { render() { const actionList = this.props.actions.map(action => ( - + {action.title} - + )); return