Append original file on bulk import #26

This commit is contained in:
mProjectsCode 2022-06-13 11:02:46 +02:00
parent aa7659ee1f
commit 68654d97e7
2 changed files with 54 additions and 27 deletions

View file

@ -141,7 +141,7 @@ export function markdownTable(content: string[][]): string {
}
export function dateToString(date: Date) {
return `${date.getMonth()}-${date.getDay()}-${date.getFullYear()}`;
return `${date.getMonth() + 1}-${date.getDate()}-${date.getFullYear()}`;
}
export function timeToString(time: Date) {