We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1e65f commit 4ba1522Copy full SHA for 4ba1522
src/DateTimePickerDays.js
@@ -74,11 +74,11 @@ export default class DateTimePickerDays extends Component {
74
<table className="table-condensed">
75
<thead>
76
<tr>
77
- <th className="prev" onClick={this.props.subtractMonth}>‹</th>
+ <th className="prev" onClick={this.props.subtractMonth}><span className="glyphicon glyphicon-chevron-left" /></th>
78
79
<th className="switch" colSpan="5" onClick={this.props.showMonths}>{moment.months()[this.props.viewDate.month()]} {this.props.viewDate.year()}</th>
80
81
- <th className="next" onClick={this.props.addMonth}>›</th>
+ <th className="next" onClick={this.props.addMonth}><span className="glyphicon glyphicon-chevron-right" /></th>
82
</tr>
83
84
0 commit comments