File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,12 @@ class Nav extends React.Component {
18
18
classes [ tbsUtils . prefix ( this . props , 'justified' ) ] = this . props . justified ;
19
19
20
20
21
- if ( this . props . navbar ) {
21
+ if ( isNavbar ) {
22
22
let bsClass = this . context . $bs_navbar_bsClass || 'navbar' ;
23
+ const navbarRight = this . props . right != null ? this . props . right : this . props . pullRight ;
23
24
24
25
classes [ tbsUtils . prefix ( { bsClass } , 'nav' ) ] = true ;
25
- classes [ tbsUtils . prefix ( { bsClass } , 'right' ) ] = isNavbar ;
26
+ classes [ tbsUtils . prefix ( { bsClass } , 'right' ) ] = navbarRight ;
26
27
} else {
27
28
classes [ 'pull-right' ] = this . props . pullRight ;
28
29
}
@@ -119,7 +120,7 @@ Nav.propTypes = {
119
120
navbar : React . PropTypes . bool ,
120
121
eventKey : React . PropTypes . any ,
121
122
pullRight : React . PropTypes . bool ,
122
- right : React . PropTypes . bool
123
+ right : deprecated ( React . PropTypes . bool , 'Use the `pullRight` prop instead' )
123
124
} ;
124
125
125
126
Nav . contextTypes = {
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ describe('Navbar', () => {
186
186
expect ( collapse . context . $bs_navbar_navExpanded ) . to . equal ( true ) ;
187
187
} ) ;
188
188
189
- it . only ( 'Should wire the toggle to the collapse' , ( ) => {
189
+ it ( 'Should wire the toggle to the collapse' , ( ) => {
190
190
let instance = ReactTestUtils . renderIntoDocument (
191
191
< Navbar >
192
192
< Navbar . Header >
You can’t perform that action at this time.
0 commit comments