Skip to content

Commit

Permalink
#334 added hour to workflow grid column (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelVerstappen authored Dec 9, 2024
1 parent 023c3bb commit e0468e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dumb/GridWorkflow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const remarkValueFormatter = (params: ValueFormatterParams<IWorkflowState, IWork
const dateFormatter = (params: ValueFormatterParams) => {
if (params.value) {
return format(new Date(params.value || ''), 'dd-MM-yyyy');
return format(new Date(params.value || ''), 'dd-MM-yyyy HH:mm');
}
return '';
};
Expand Down

0 comments on commit e0468e9

Please sign in to comment.