We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e49f66 commit 2253bd6Copy full SHA for 2253bd6
client/src/components/Dataset/DatasetDisplay.vue
@@ -26,7 +26,6 @@ const props = defineProps<Props>();
26
27
const content = ref();
28
const contentTruncated = ref();
29
-const contentType = ref();
30
const errorMessage = ref();
31
const sanitizedJobImported = ref();
32
const sanitizedToolId = ref();
@@ -56,7 +55,6 @@ watch(
56
55
const { data, headers } = await axios.get(previewUrl.value);
57
content.value = data;
58
contentTruncated.value = headers["x-content-truncated"];
59
- contentType.value = headers["content-type"];
60
sanitizedJobImported.value = headers["x-sanitized-job-imported"];
61
sanitizedToolId.value = headers["x-sanitized-tool-id"];
62
errorMessage.value = "";
0 commit comments