+
Your GTFS+ changes have been saved and revalidated.
+
Reminder: To make GTFS+ data available, click
Publish new version on the feed version page.
+
+ )
+ })
+ }
+ })
}
_getGtfsEntity = (type: string, id: string) => this.props.gtfsEntityLookup[`${type}_${id}`]
diff --git a/lib/gtfsplus/containers/ActiveGtfsPlusEditor.js b/lib/gtfsplus/containers/ActiveGtfsPlusEditor.js
index 571e9fa17..0994fc94d 100644
--- a/lib/gtfsplus/containers/ActiveGtfsPlusEditor.js
+++ b/lib/gtfsplus/containers/ActiveGtfsPlusEditor.js
@@ -58,7 +58,7 @@ const mapStateToProps = (state: AppState, ownProps: Props) => {
const mapDispatchToProps = {
addGtfsPlusRow: gtfsPlusEditorActions.addGtfsPlusRow,
- deleteGtfsPlusRow: gtfsPlusEditorActions.deleteGtfsPlusFeed,
+ deleteGtfsPlusRow: gtfsPlusEditorActions.deleteGtfsPlusRow,
downloadGtfsPlusFeed: gtfsPlusEditorActions.downloadGtfsPlusFeed,
fetchFeedSourceAndProject: feedActions.fetchFeedSourceAndProject,
loadGtfsEntities: gtfsPlusEditorActions.loadGtfsEntities,
diff --git a/lib/manager/components/CreateFeedSource.js b/lib/manager/components/CreateFeedSource.js
index 9826ff914..a84cbe80c 100644
--- a/lib/manager/components/CreateFeedSource.js
+++ b/lib/manager/components/CreateFeedSource.js
@@ -21,7 +21,7 @@ import validator from 'validator'
import {createFeedSource} from '../actions/feeds'
import Loading from '../../common/components/Loading'
import {FREQUENCY_INTERVALS} from '../../common/constants'
-import {isExtensionEnabled} from '../../common/util/config'
+import {isExtensionEnabled, isModuleEnabled} from '../../common/util/config'
import {validationState} from '../util'
import {isValidFilename} from '../util/validation'
import type {FetchFrequency, NewFeed} from '../../types'
@@ -184,34 +184,36 @@ export default class CreateFeedSource extends Component