diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 2a72325f27a0..53e1f5ae6f21 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -14887,7 +14887,19 @@ export interface components { /** Message */ message: string; }; - /** InferredColumnMapping */ + /** + * InferredColumnMapping + * @description Records that a column at a specific index was successfully parsed and mapped. + * + * Used in parse logs to show users which columns were recognized and how they were interpreted. + * + * Example log entry: + * InferredColumnMapping( + * column_index=2, + * column_title="MD5 Sum", + * parsed_column=ParsedColumn(type="hash_md5", type_index=0, title="MD5 Sum") + * ) + */ InferredColumnMapping: { /** Column Index */ column_index: number; @@ -18660,7 +18672,12 @@ export interface components { */ content: string; }; - /** ParsedColumn */ + /** + * ParsedColumn + * @description Serializable representation of a parsed column (Pydantic model version of HeaderColumn). + * + * Used in API responses and logging to communicate which columns were recognized. + */ ParsedColumn: { /** Title */ title: string; diff --git a/client/src/components/ActivityBar/ActivitySettings.vue b/client/src/components/ActivityBar/ActivitySettings.vue index 9113d5eb0923..8423f4713e34 100644 --- a/client/src/components/ActivityBar/ActivitySettings.vue +++ b/client/src/components/ActivityBar/ActivitySettings.vue @@ -88,6 +88,8 @@ function executeActivity(activity: Activity) { v-for="activity in filteredActivities" :key="activity.id" class="activity-settings-item p-2 cursor-pointer" + :data-activity-id="activity.id" + :data-activity-visible="!!activity.visible" @click="executeActivity(activity)">
diff --git a/client/src/components/Collections/wizard/CardDownloadWorkbook.vue b/client/src/components/Collections/wizard/CardDownloadWorkbook.vue index 9b638b161c32..e20107cc0a43 100644 --- a/client/src/components/Collections/wizard/CardDownloadWorkbook.vue +++ b/client/src/components/Collections/wizard/CardDownloadWorkbook.vue @@ -21,7 +21,7 @@ const emit = defineEmits(["download"]); Step 1: Download - Download workbook. diff --git a/client/src/components/Collections/wizard/CardUploadWorkbook.vue b/client/src/components/Collections/wizard/CardUploadWorkbook.vue index 602922dfa522..264d5b273947 100644 --- a/client/src/components/Collections/wizard/CardUploadWorkbook.vue +++ b/client/src/components/Collections/wizard/CardUploadWorkbook.vue @@ -24,6 +24,7 @@ const emit = defineEmits(["workbookContents"]);