Skip to content

Commit

Permalink
#817 fix instances page missing col state
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhir committed Oct 6, 2023
1 parent 8658775 commit 607b2fa
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const useGetProcessInstances = (page: Ref<number>, size: Ref<number>, que
description: it.description,
startTime: it.startTime ? DateTime.fromISO(it.startTime).toLocaleString(DateTime.DATETIME_SHORT) : "-",
endTime: it.endTime,
status: it.status,
})) ?? [];

return Promise.resolve<Page<ProcessInstance>>({
Expand Down

0 comments on commit 607b2fa

Please sign in to comment.