From 43bd50f49ddef9e9482759850c62376a04a1634a Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Mon, 14 Sep 2026 11:18:51 +0300 Subject: [PATCH] Fix value for bulk ingestion type filter --- src/apps/admin/src/ai/topscout-rag/ingest-options.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/admin/src/ai/topscout-rag/ingest-options.ts b/src/apps/admin/src/ai/topscout-rag/ingest-options.ts index 13d3483c4..121157100 100644 --- a/src/apps/admin/src/ai/topscout-rag/ingest-options.ts +++ b/src/apps/admin/src/ai/topscout-rag/ingest-options.ts @@ -35,9 +35,9 @@ export const BULK_TRACK_OPTIONS: InputSelectOption[] = [ export const BULK_TYPE_OPTIONS: InputSelectOption[] = [ { label: 'Any type', value: '' }, { label: 'Challenge', value: 'Challenge' }, - { label: 'First2Finish', value: 'First2Finish' }, - { label: 'Marathon Match', value: 'Marathon Match' }, - { label: 'Task', value: 'Task' }, + { label: 'First2Finish', value: 'F2F' }, + { label: 'Marathon Match', value: 'MM' }, + { label: 'Task', value: 'TSK' }, ] /** Mirrors the workflow's own default status set. */