render collections as images via the element picker in reports

This commit is contained in:
Ahmed Awan
2026-02-23 17:22:53 -06:00
parent ce7c321691
commit b561f86cee
@@ -161,6 +161,13 @@ watch(
v-else-if="name == 'history_dataset_as_image' && args.history_dataset_id"
:dataset-id="args.history_dataset_id"
:path="args.path" />
<DatasetCollectionElementPicker
v-else-if="name == 'history_dataset_as_image' && args.history_dataset_collection_id"
:hdca-id="args.history_dataset_collection_id">
<template v-slot:element="{ element }">
<HistoryDatasetAsImage v-if="element" :key="element" :dataset-id="element" :path="args.path" />
</template>
</DatasetCollectionElementPicker>
<HistoryDatasetAsTable
v-else-if="name == 'history_dataset_as_table' && args.history_dataset_id"
:compact="compact"