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 95209b3 commit 72cc9f7Copy full SHA for 72cc9f7
lib/manager/components/FeedSourceTable.js
@@ -30,6 +30,7 @@ export default class FeedSourceTable extends PureComponent<Props> {
30
31
_renderTable = () => {
32
const {comparisonColumn, filteredFeedSources, project} = this.props
33
+ const latestVersionColSpan = isExtensionEnabled('mtc') ? 4 : 3
34
return (
35
<table className='feed-source-table'>
36
<thead>
@@ -40,7 +41,7 @@ export default class FeedSourceTable extends PureComponent<Props> {
40
41
<h4>{this.messages(`comparisonColumn.${comparisonColumn}`)}</h4>
42
</th>
43
}
- <th className='feed-version-column top-row' colSpan={4}>
44
+ <th className='feed-version-column top-row' colSpan={latestVersionColSpan}>
45
<h4>{this.messages('latestVersion')}</h4>
46
47
<th />
0 commit comments