diff --git a/client/src/components/DatasetInformation/DatasetDetails.vue b/client/src/components/DatasetInformation/DatasetDetails.vue index 667e33d2c802..7680606b3106 100644 --- a/client/src/components/DatasetInformation/DatasetDetails.vue +++ b/client/src/components/DatasetInformation/DatasetDetails.vue @@ -33,7 +33,6 @@ const userStore = useUserStore(); const { currentUser } = storeToRefs(userStore); const loading = ref(false); -const jobLoading = ref(true); const jobTimeOut = ref(null); const jobDetails = ref(); const dataset = ref(null); @@ -57,8 +56,6 @@ async function getDatasetDetails() { } async function loadJobDetails() { - jobLoading.value = true; - try { const { data } = await fetchJobDetails({ job_id: dataset.value?.creating_job as string, full: true }); @@ -73,8 +70,6 @@ async function loadJobDetails() { const error = e as AxiosError<{ err_msg?: string }>; jobLoadingError.value = error.response?.data?.err_msg || "Unable to fetch available dataset details."; - } finally { - jobLoading.value = false; } } @@ -102,7 +97,7 @@ onUnmounted(() => { {{ datasetLoadingError }}
-
+
@@ -124,7 +119,7 @@ onUnmounted(() => { - +

Dataset Peek