@@ -32,10 +32,10 @@ export default class ButtonDropdownPage extends React.Component {
3232 render ( ) {
3333 return (
3434 < div >
35- < Helmet title = "Button Dropdown" />
35+ < Helmet title = "Button Dropdown" />
3636 < h3 > Button Dropdown</ h3 >
3737 < div className = "docs-example" >
38- < ButtonDropdownExample />
38+ < ButtonDropdownExample />
3939 </ div >
4040 < pre >
4141 < PrismCode className = "language-jsx" >
@@ -68,12 +68,12 @@ DropdownToggle.propTypes = {
6868 < h3 > Single button dropdowns</ h3 >
6969 < div className = "docs-example" >
7070 < div >
71- < Example color = "secondary" text = "Default" />
72- < Example color = "primary" text = "Primary" />
73- < Example color = "success" text = "Success" />
74- < Example color = "info" text = "Info" />
75- < Example color = "warning" text = "Warning" />
76- < Example color = "danger" text = "Darning" />
71+ < Example color = "secondary" text = "Default" />
72+ < Example color = "primary" text = "Primary" />
73+ < Example color = "success" text = "Success" />
74+ < Example color = "info" text = "Info" />
75+ < Example color = "warning" text = "Warning" />
76+ < Example color = "danger" text = "Darning" />
7777 </ div >
7878 </ div >
7979 < pre >
@@ -95,12 +95,12 @@ DropdownToggle.propTypes = {
9595 < h3 > Single button dropdowns</ h3 >
9696 < div className = "docs-example" >
9797 < div >
98- < ExampleSplit color = "secondary" text = "Default" />
99- < ExampleSplit color = "primary" text = "Primary" />
100- < ExampleSplit color = "success" text = "Success" />
101- < ExampleSplit color = "info" text = "Info" />
102- < ExampleSplit color = "warning" text = "Warning" />
103- < ExampleSplit color = "danger" text = "Darning" />
98+ < ExampleSplit color = "secondary" text = "Default" />
99+ < ExampleSplit color = "primary" text = "Primary" />
100+ < ExampleSplit color = "success" text = "Success" />
101+ < ExampleSplit color = "info" text = "Info" />
102+ < ExampleSplit color = "warning" text = "Warning" />
103+ < ExampleSplit color = "danger" text = "Darning" />
104104 </ div >
105105 </ div >
106106 < pre >
@@ -123,7 +123,7 @@ DropdownToggle.propTypes = {
123123 < h3 > Sizing</ h3 >
124124 < div className = "docs-example" >
125125 < div >
126- < ButtonDropdown isOpen = { this . state . btnLg } toggle = { ( ) => { this . setState ( { btnLg : ! this . state . btnLg } ) } } >
126+ < ButtonDropdown isOpen = { this . state . btnLg } toggle = { ( ) => { this . setState ( { btnLg : ! this . state . btnLg } ) ; } } >
127127 < DropdownToggle caret >
128128 < Button size = "lg" > Large Button</ Button >
129129 </ DropdownToggle >
@@ -134,7 +134,7 @@ DropdownToggle.propTypes = {
134134 </ ButtonDropdown >
135135 </ div >
136136 < div className = "m-t-1" >
137- < ButtonDropdown isOpen = { this . state . btnSm } toggle = { ( ) => { this . setState ( { btnSm : ! this . state . btnSm } ) } } >
137+ < ButtonDropdown isOpen = { this . state . btnSm } toggle = { ( ) => { this . setState ( { btnSm : ! this . state . btnSm } ) ; } } >
138138 < DropdownToggle caret >
139139 < Button size = "sm" > Small Button</ Button >
140140 </ DropdownToggle >
@@ -171,7 +171,7 @@ DropdownToggle.propTypes = {
171171 < h3 > Dropup variation</ h3 >
172172 < div className = "docs-example" >
173173 < div >
174- < ButtonDropdown dropup isOpen = { this . state . btnDropup } toggle = { ( ) => { this . setState ( { btnDropup : ! this . state . btnDropup } ) } } >
174+ < ButtonDropdown dropup isOpen = { this . state . btnDropup } toggle = { ( ) => { this . setState ( { btnDropup : ! this . state . btnDropup } ) ; } } >
175175 < DropdownToggle caret >
176176 < Button size = "lg" > Dropup</ Button >
177177 </ DropdownToggle >
0 commit comments