Skip to content

Commit

Permalink
#15 add timestamp to hints
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaSageder committed Apr 21, 2023
1 parent bb263d3 commit ac80427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data-management/download-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function downloadBasisdokumentAsPDF(obj: any, fileName: string) {
let hint = {
id: entryId,
title:
judgeHintObject.author + entryCodeText + " | " + judgeHintObject.title,
judgeHintObject.author + entryCodeText + " | " + judgeHintObject.title + " | Hinzugefügt am: " + getEntryTimestamp(judgeHintObject, obj),
text: parseHTMLtoString(judgeHintObject.text),
version: judgeHintObject.version,
};
Expand Down

1 comment on commit ac80427

@JuliaSageder
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing reference to #54

Please sign in to comment.