Skip to content

Commit

Permalink
db-tabulator: use signature timestamp format for last updated
Browse files Browse the repository at this point in the history
Enables it to be shown in local time when "Comments in local time" gadget is enabled.

https://en.wikipedia.org/wiki/Template_talk:Database_report#Time_stamp_formatting_request
  • Loading branch information
siddharthvp committed Jul 1, 2024
1 parent 5ba4060 commit 72dde75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db-tabulator/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ export class Query extends EventEmitter {
page: pageNumber && String(pageNumber),
num_pages: pageNumber && String(this.numPages),
query_runtime: this.queryRuntime,
last_updated: new bot.date().format('D MMMM YYYY HH:mm') + ' (UTC)',
last_updated: new bot.date().format('HH:mm, D MMMM YYYY') + ' (UTC)',
})
);
}
Expand Down

0 comments on commit 72dde75

Please sign in to comment.