-
Notifications
You must be signed in to change notification settings - Fork 89
Closed
Description
Due to the changes in #469, the GTFS+ yml file is not being loaded properly when the config initializes:
datatools-ui/lib/common/util/config.js
Lines 86 to 90 in 20fe8b5
| if (config.modules.gtfsplus && config.modules.gtfsplus.enabled) { | |
| // $FlowFixMe - assume file exists and make flow happy | |
| const gtfsplus = require('../../../gtfsplus.yml') | |
| config.specifications.gtfsplus = gtfsplus | |
| } |
Instead of checking for the module enabled flag, we should just load the yml file regardless.