aichbauer/styled-bootstrap-components

1 Dropdown Menu should be open at one time

Closed this issue · 1 comments

I have 3 drop down menu when I click on all the drop down menu remain open however when I click another one so previous one should b close.

Last toggle option has an issue with close and open

https://codesandbox.io/s/1vp7zvww04

That is not really a issue with styled-bootstrap-components. You need to set the boolean for the other dropdown to false

a quick and dirty fix would be:

 handleOpenCloseDropdown(dropdownHidden) {
    this.setState({
      published: false,
      text1: false,
      text2: false,
      [dropdownHidden]: true,
    });
  }