mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-23 17:06:42 +08:00
fix(web): make raw memory type non-removable in multi-select (#17119)
This commit is contained in:
@@ -11,7 +11,7 @@ export enum MemoryType {
|
||||
Procedural = 'procedural',
|
||||
}
|
||||
export const MemoryOptions = (t: TFunction) => [
|
||||
{ label: t('memories.raw'), value: MemoryType.Raw },
|
||||
{ label: t('memories.raw'), value: MemoryType.Raw, disabled: true },
|
||||
{ label: t('memories.semantic'), value: MemoryType.Semantic },
|
||||
{ label: t('memories.episodic'), value: MemoryType.Episodic },
|
||||
{ label: t('memories.procedural'), value: MemoryType.Procedural },
|
||||
|
||||
Reference in New Issue
Block a user