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 @@ -130,6 +130,19 @@ export default class GtfsPlusEditor extends Component<Props> {
130
130
zip . generateAsync ( { type : 'blob' } )
131
131
. then ( content => uploadGtfsPlusFeed ( feedVersionId , content ) )
132
132
. then ( ( ) => downloadGtfsPlusFeed ( feedVersionId ) )
133
+ . then ( ( ) => {
134
+ if ( this . refs . page && typeof this . refs . page . showInfoModal === 'function' ) {
135
+ this . refs . page . showInfoModal ( {
136
+ title : 'GTFS+ Save Complete' ,
137
+ body : (
138
+ < div >
139
+ < p > Your GTFS+ changes have been saved and revalidated.</ p >
140
+ < strong > Reminder:</ strong > To make GTFS+ data available, click < b > Publish new version</ b > on the feed version page.
141
+ </ div >
142
+ )
143
+ } )
144
+ }
145
+ } )
133
146
}
134
147
135
148
_getGtfsEntity = ( type : string , id : string ) = > this . props . gtfsEntityLookup [ `${ type } _${ id } ` ]
You can’t perform that action at this time.
0 commit comments