Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jajajaby committed Dec 7, 2018
2 parents a5d28ed + 134388d commit 28b6818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/date.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class DateService {
if( day < 10 ) { dd = '0'+ day; } else{ dd = day; }
if( month < 10 ) { mm = '0'+ month; } else{ mm = month; }

return `${ dd }-${ mm }-${ year }`;
return `${ mm }-${ dd }-${ year }`;
}

// Extrae y retorna la hora actual
Expand Down

0 comments on commit 28b6818

Please sign in to comment.