Skip to content

Commit

Permalink
Use tabs instead of spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Willian Gustavo Veiga <beberveiga@gmail.com>
  • Loading branch information
willianveiga committed Aug 25, 2018
1 parent f8239f4 commit 9e49064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/filters/dateFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ app.filter('dateToTimestamp', function() {
app.filter('parseDate', function() {
return function (date) {
if(moment(date).isValid()) {
var dateFormat = moment.localeData().longDateFormat('L');
var dateFormat = moment.localeData().longDateFormat('L');
return moment(date).format(dateFormat);
}
return '';
Expand Down

0 comments on commit 9e49064

Please sign in to comment.