feat(web): use memory_config_id replace memory_content

This commit is contained in:
zhaoying
2026-02-06 11:28:19 +08:00
parent 0c3960eb0b
commit 623aaf8a0e
3 changed files with 10 additions and 10 deletions

View File

@@ -39,7 +39,7 @@ const processObj = [
* @param value - Current skill configuration values
* @param onChange - Callback function when configuration changes
*/
const Skill: FC<{value?: SkillConfigForm; onChange?: (config: SkillConfigForm) => void}> = () => {
const SkillList: FC<{value?: SkillConfigForm; onChange?: (config: SkillConfigForm) => void}> = () => {
const { t } = useTranslation()
const form = Form.useFormInstance()
const skillConfig = Form.useWatch(['skills'], form)
@@ -148,4 +148,4 @@ const Skill: FC<{value?: SkillConfigForm; onChange?: (config: SkillConfigForm) =
</Card>
)
}
export default Skill
export default SkillList