Skip to content

Commit 03b77bb

Browse files
fix(FeedVersionTabs): Fix github lint checks
1 parent b7c0c50 commit 03b77bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/manager/components/version/FeedVersionTabs.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default class FeedVersionTabs extends Component<Props> {
9191
const timeTableOptions = {...tableOptions}
9292
// Add default page zie for timetable options
9393
timeTableOptions.options = {...timeTableOptions.options, sizePerPage: 50}
94-
const countFields = ['agencyCount', 'routeCount', 'stopCount', 'tripCount', 'stopTimesCount' /*, 'errorCount'*/]
94+
const countFields = ['agencyCount', 'routeCount', 'stopCount', 'tripCount', 'stopTimesCount']
9595
const daysActive = moment(version.validationSummary.endDate)
9696
.diff(moment(version.validationSummary.startDate), 'days')
9797
return (
@@ -118,6 +118,7 @@ export default class FeedVersionTabs extends Component<Props> {
118118
{comparedVersion
119119
? <sup style={{width: 0, display: 'inline-block'}}>
120120
<Label
121+
htmlFor
121122
style={{fontSize: '50%', padding: '0 0.2em 0.1em'}}
122123
bsStyle={diff > 0 ? 'success' : (diff < 0 ? 'danger' : 'default')}
123124
title={`Compared to Version ${comparedVersionIndex}`}>

0 commit comments

Comments
 (0)