mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-23 17:50:25 +08:00
fix(form): fix appendSchemaByField not work
This commit is contained in:
parent
3549043f37
commit
405d7466dd
@ -117,7 +117,7 @@ export function useFormEvents({
|
||||
const schemaList: FormSchema[] = cloneDeep(unref(getSchema));
|
||||
|
||||
const index = schemaList.findIndex((schema) => schema.field === prefixField);
|
||||
const hasInList = schemaList.some((item) => item.field === schema.field);
|
||||
const hasInList = schemaList.some((item) => item.field === prefixField);
|
||||
|
||||
if (!hasInList) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user