Skip to content

Commit

Permalink
fix: use date format
Browse files Browse the repository at this point in the history
  • Loading branch information
banteg committed Sep 13, 2023
1 parent 09dc76b commit ce847f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExecuteTimeWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export default class ExecuteTimeWidget extends Widget {
)} in ${executionTime}`;
msg = 'Last executed';
if (this._settings.showDate) {
msg += ` at ${getTimeString(endTime)}`;
msg += ` at ${getTimeString(endTime, this._settings.dateFormat)}`;
}
msg += ` in ${executionTime}`;
}
Expand Down

0 comments on commit ce847f4

Please sign in to comment.