diff --git a/packages/ui/client/composables/summary.ts b/packages/ui/client/composables/summary.ts index 94d2318b512d..c1eea9d6e02f 100644 --- a/packages/ui/client/composables/summary.ts +++ b/packages/ui/client/composables/summary.ts @@ -37,6 +37,8 @@ export const time = computed(() => { acc += Math.max(0, t.collectDuration || 0) acc += Math.max(0, t.setupDuration || 0) acc += Math.max(0, t.result?.duration || 0) + acc += Math.max(0, t.environmentLoad || 0) + acc += Math.max(0, t.prepareDuration || 0) return acc }, 0)