File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,19 @@ export default class GtfsPlusEditor extends Component<Props> {
95
95
zip . generateAsync ( { type : 'blob' } )
96
96
. then ( content => uploadGtfsPlusFeed ( feedVersionId , content ) )
97
97
. then ( ( ) => downloadGtfsPlusFeed ( feedVersionId ) )
98
+ . then ( ( ) => {
99
+ if ( this . refs . page && typeof this . refs . page . showInfoModal === 'function' ) {
100
+ this . refs . page . showInfoModal ( {
101
+ title : 'GTFS+ Save Complete' ,
102
+ body : (
103
+ < div >
104
+ < p > Your GTFS+ changes have been saved and revalidated.</ p >
105
+ < strong > Reminder:</ strong > To make GTFS+ data available, click < b > Publish new version</ b > on the feed version page.
106
+ </ div >
107
+ )
108
+ } )
109
+ }
110
+ } )
98
111
}
99
112
100
113
_getGtfsEntity = ( type : string , id : string ) = > this . props . gtfsEntityLookup [ `${ type } _${ id } ` ]
You can’t perform that action at this time.
0 commit comments