diff --git a/src/components/global/RequestQueueProgress.vue b/src/components/global/RequestQueueProgress.vue index 8e3261a9..2fad2d8f 100644 --- a/src/components/global/RequestQueueProgress.vue +++ b/src/components/global/RequestQueueProgress.vue @@ -2,7 +2,11 @@ import { computed, onBeforeUnmount, onMounted, ref, watch } from "vue"; import axios from "axios"; import { REQUEST_QUEUE_CONFIG } from "@/config.js"; -import { getReleaseRuntimeApiBaseUrl, resolveReleaseApiUrl } from "@/services/releaseTimeline.js"; +import { + buildReleaseSessionSummary, + getReleaseRuntimeApiBaseUrl, + resolveReleaseApiUrl, +} from "@/services/releaseTimeline.js"; import { SessionUser } from "@/components/session/token/SessionUser.vue"; import { clearErrorRequests, @@ -280,6 +284,7 @@ const resolvePingUrl = () => { }; const activeApiUrl = computed(() => getReleaseRuntimeApiBaseUrl()); +const releaseSessionSummary = computed(() => buildReleaseSessionSummary()); const measurePingLatency = async () => { if (typeof fetch !== "function") { @@ -641,60 +646,186 @@ onBeforeUnmount(() => {