Skip to content

Commit

Permalink
make linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Mar 29, 2021
1 parent 146cb55 commit 9ae54df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/src/timeline/timeline-businessHours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe('timeline businessHours', () => {
for (let nonBusinessEl of nonBusinessEls) {
expect(Math.abs(
nonBusinessEl.getBoundingClientRect().height -
aveLaneHeight
aveLaneHeight,
)).toBeLessThan(3)
}
})
Expand Down
2 changes: 1 addition & 1 deletion adaptive/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
flushToDom,
CalendarContext,
removeExact,
config
config,
} from '@fullcalendar/common'

import premiumCommonPlugin from '@fullcalendar/premium-common' // eslint-disable-line import/no-duplicates
Expand Down
2 changes: 1 addition & 1 deletion resource-timeline/src/ResourceTimelineGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class ResourceTimelineGrid extends DateComponent<ResourceTimelineGridProp
ref={this.handleEl}
className={[
'fc-timeline-body',
props.expandRows ? 'fc-timeline-body-expandrows' : ''
props.expandRows ? 'fc-timeline-body-expandrows' : '',
].join(' ')}
style={{ minWidth: props.tableMinWidth }}
>
Expand Down

0 comments on commit 9ae54df

Please sign in to comment.