We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df51416 commit da82469Copy full SHA for da82469
src/pagination/SizePerPageDropDown.js
@@ -1,5 +1,7 @@
1
import React, { Component, PropTypes } from 'react';
2
3
+const sizePerPageDefaultClass = 'react-bs-table-sizePerPage-dropdown';
4
+
5
class SizePerPageDropDown extends Component {
6
render() {
7
const {
@@ -17,7 +19,8 @@ class SizePerPageDropDown extends Component {
17
19
const dropDownStyle = { visibility: hidden ? 'hidden' : 'visible' };
18
20
21
return (
- <span className={ `${variation} ${openClass} ${className}` } style={ dropDownStyle }>
22
+ <span style={ dropDownStyle }
23
+ className={ `${variation} ${openClass} ${className} ${sizePerPageDefaultClass}` }>
24
<button className={ `btn ${btnContextual} dropdown-toggle` }
25
id='pageDropDown' data-toggle='dropdown'
26
aria-expanded={ open }
0 commit comments