File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ FRESH to JSON Resume conversion routiens.
210210
211211 awards : src . recognition . map ( function ( awd ) {
212212 return {
213- flavor : foreign ? awd . type : undefined ,
213+ flavor : foreign ? awd . flavor : undefined ,
214214 url : foreign ? awd . url : undefined ,
215215 title : awd . title ,
216216 date : awd . date ,
Original file line number Diff line number Diff line change @@ -284,12 +284,14 @@ Definition of the FRESHResume class.
284284 end : _fmt ( vol . end || 'current' )
285285 } ;
286286 } ) ;
287- // this.awards && this.awards.forEach( function(awd) {
288- // awd.safeDate = _fmt( awd.date );
289- // });
290- this . publications && this . publications . forEach ( function ( pub ) {
287+ this . recognition && this . recognition . forEach ( function ( rec ) {
288+ rec . safe = {
289+ date : _fmt ( rec . date )
290+ } ;
291+ } ) ;
292+ this . writing && this . writing . forEach ( function ( pub ) {
291293 pub . safe = {
292- date : _fmt ( pub . year )
294+ date : _fmt ( pub . date )
293295 } ;
294296 } ) ;
295297 }
You can’t perform that action at this time.
0 commit comments