Skip to content

Commit

Permalink
Improved: time format to show AM/PM (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Oct 20, 2023
1 parent a0bc6dc commit b280ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Brokering.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default defineComponent({
return batchmodal.present();
},
getTime (time: any) {
return DateTime.fromMillis(time).toLocaleString(DateTime.TIME_24_SIMPLE);
return DateTime.fromMillis(time).toFormat('hh:mm a');
},
getBrokerQueue(job: any){
if(job.status === 'SERVICE_PENDING'){
Expand Down

0 comments on commit b280ff6

Please sign in to comment.