Merge pull request #21909 from ahmedhamidawan/render_history_collections_as_image

Render collections as images via the element picker in reports
This commit is contained in:
Ahmed Hamid Awan
2026-02-25 09:22:47 -06:00
committed by GitHub
@@ -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"