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 85a4de8 commit 7479b4dCopy full SHA for 7479b4d
src/TimeGridHeader.js
@@ -49,7 +49,7 @@ class TimeGridHeader extends React.Component {
49
<button
50
type="button"
51
className="rbc-button-link"
52
- onClick={e => this.handleHeaderClick(date, drilldownView, e)}
+ onClick={(e) => this.handleHeaderClick(date, drilldownView, e)}
53
>
54
{header}
55
</button>
@@ -129,7 +129,7 @@ class TimeGridHeader extends React.Component {
129
130
let style = {}
131
if (isOverflowing) {
132
- style[rtl ? 'marginLeft' : 'marginRight'] = `${scrollbarSize()}px`
+ style[rtl ? 'marginLeft' : 'marginRight'] = `${scrollbarSize() - 1}px`
133
}
134
135
const groupedEvents = resources.groupEvents(events)
0 commit comments