Skip to content

Commit

Permalink
Merge pull request #172 from dnd-al-krk/feature/search_by_character
Browse files Browse the repository at this point in the history
added full date to games in archive and starting hour for games in the future
  • Loading branch information
ivellios authored Jul 9, 2024
2 parents dd6e374 + 7499ab0 commit c64bbce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const dateToString = (date) => {
};

export const fullDateToString = (date) => {
return ("0" + date.getDate()).slice(-2) + '.' + ("0" + (date.getMonth()+1)).slice(-2) + '.' + date.getFullYear();
return dateToString(date) + '.' + date.getFullYear();

};

Expand Down

0 comments on commit c64bbce

Please sign in to comment.