From 5283a10387bcecaa791dbd37bc107aae7a147c95 Mon Sep 17 00:00:00 2001 From: buua436 <66937541+buua436@users.noreply.github.com> Date: Tue, 4 Nov 2025 11:22:10 +0800 Subject: [PATCH] Fix:wrong param in meta_data_filter (#10978) ### What problem does this PR solve? change: wrong param in meta_data_filter ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/constants/chat.ts | 2 +- web/src/locales/en.ts | 2 +- web/src/locales/ja.ts | 2 +- web/src/locales/ru.ts | 2 +- web/src/locales/zh.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/constants/chat.ts b/web/src/constants/chat.ts index 30da3faff..02d23b652 100644 --- a/web/src/constants/chat.ts +++ b/web/src/constants/chat.ts @@ -35,6 +35,6 @@ export const EmptyConversationId = 'empty'; export enum DatasetMetadata { Disabled = 'disabled', - Automatic = 'automatic', + Automatic = 'auto', Manual = 'manual', } diff --git a/web/src/locales/en.ts b/web/src/locales/en.ts index 3c2aeec4d..f2420982a 100644 --- a/web/src/locales/en.ts +++ b/web/src/locales/en.ts @@ -671,7 +671,7 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s addCondition: 'Add Condition', meta: { disabled: 'Disabled', - automatic: 'Automatic', + auto: 'Automatic', manual: 'Manual', }, cancel: 'Cancel', diff --git a/web/src/locales/ja.ts b/web/src/locales/ja.ts index 8a48b4fe6..e56fcadca 100644 --- a/web/src/locales/ja.ts +++ b/web/src/locales/ja.ts @@ -491,7 +491,7 @@ export default { addCondition: '条件を追加', meta: { disabled: '無効', - automatic: '自動', + auto: '自動', manual: '手動', }, cancel: 'キャンセル', diff --git a/web/src/locales/ru.ts b/web/src/locales/ru.ts index f922c3d01..cb608cf1f 100644 --- a/web/src/locales/ru.ts +++ b/web/src/locales/ru.ts @@ -611,7 +611,7 @@ export default { addCondition: 'Добавить условие', meta: { disabled: 'Отключено', - automatic: 'Автоматически', + auto: 'Автоматически', manual: 'Вручную', }, cancel: 'Отмена', diff --git a/web/src/locales/zh.ts b/web/src/locales/zh.ts index bd9a66a4b..8692791ee 100644 --- a/web/src/locales/zh.ts +++ b/web/src/locales/zh.ts @@ -660,7 +660,7 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于 addCondition: '增加条件', meta: { disabled: '禁用', - automatic: '自动', + auto: '自动', manual: '手动', }, cancel: '取消',