Skip to content

Commit

Permalink
[WTH-7154]: addition of month-day-year to time display
Browse files Browse the repository at this point in the history
  • Loading branch information
skipcoon committed Aug 9, 2024
1 parent e518d55 commit 5395a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/manualMode.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default {
get manualModeExpiration() {
if (this.session?.mode === 'Manual') {
let datetime = this.session.expires_at;
return dayjs(datetime).format('h:mm:ss A z');
return dayjs(datetime).format('M/D/YYYY h:mm:ss A z');
}
},
get sessionTimeRemaining() {
Expand All @@ -39,7 +39,7 @@ export default {
get conversationExpiration() {
if (this.conversation) {
let datetime = this.conversation.expires_at;
return dayjs(datetime).format('h:mm:ss A z');
return dayjs(datetime).format('M/D/YYYY h:mm:ss A z');
}
},
get conversationName() {
Expand Down

0 comments on commit 5395a05

Please sign in to comment.