Skip to content

Commit e16d750

Browse files
guerlerdavelopez
andcommitted
Update client/src/components/Dataset/DatasetDisplay.vue
Co-authored-by: David López <[email protected]>
1 parent dea3e65 commit e16d750

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

client/src/components/Dataset/DatasetDisplay.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ const { getDataset, isLoadingDataset } = useDatasetStore();
2323
2424
const props = defineProps<Props>();
2525
26-
const contentTruncated = ref();
27-
const contentChunked = ref();
28-
const errorMessage = ref();
29-
const sanitizedJobImported = ref();
30-
const sanitizedToolId = ref();
26+
const contentTruncated = ref<number | null>(null);
27+
const contentChunked = ref<boolean>(false);
28+
const errorMessage = ref<string>("");
29+
const sanitizedJobImported = ref<boolean>(false);
30+
const sanitizedToolId = ref<string | null>(null);
3131
3232
const { isAdmin } = storeToRefs(useUserStore());
3333

0 commit comments

Comments
 (0)