mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-30 08:35:33 +08:00
Fix: Memory-related bug fixes (#12226)
### What problem does this PR solve? Fix: bugs fix - table -> Table - memory delete fail - memory copywriting modified ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -80,8 +80,8 @@ export const AdvancedSettingsForm = () => {
|
||||
horizontal: true,
|
||||
placeholder: t('memory.config.storageTypePlaceholder'),
|
||||
options: [
|
||||
{ label: 'table', value: 'table' },
|
||||
// { label: 'graph', value: 'graph' },
|
||||
{ label: 'Table', value: 'table' },
|
||||
// { label: 'Graph', value: 'graph' },
|
||||
],
|
||||
required: false,
|
||||
}}
|
||||
@ -95,7 +95,7 @@ export const AdvancedSettingsForm = () => {
|
||||
// placeholder: t('memory.config.storageTypePlaceholder'),
|
||||
options: [
|
||||
// { label: 'LRU', value: 'LRU' },
|
||||
{ label: 'FIFO', value: 'FIFO' },
|
||||
{ label: 'FIFO', value: 'fifo' },
|
||||
],
|
||||
required: false,
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user