diff options
| -rw-r--r-- | packages/web/src/components/share/part.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/web/src/components/share/part.tsx b/packages/web/src/components/share/part.tsx index 443e4a795..fcfa8bec4 100644 --- a/packages/web/src/components/share/part.tsx +++ b/packages/web/src/components/share/part.tsx @@ -257,8 +257,8 @@ export function Part(props: PartProps) { </div> <ToolFooter time={ - DateTime.fromMillis(props.message.time.completed || 0) - .diff(DateTime.fromMillis(props.message.time.created || 0)) + DateTime.fromMillis(props.part.state.time.start) + .diff(DateTime.fromMillis(props.part.state.time.end)) .toMillis() } /> </> |
