Skip to content

Commit

Permalink
#334 added hour to workflow grid column
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelVerstappen committed Dec 9, 2024
1 parent 18e2cc2 commit 21947fe
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 21947fe

Please sign in to comment.