mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 06:35:20 +00:00
Merge branch 'main' into next
This commit is contained in:
commit
7f258ac62b
@ -1277,7 +1277,9 @@ export const useAssociationFilterBlockProps = () => {
|
||||
if (!isOptionalField(collectionField)) {
|
||||
run();
|
||||
}
|
||||
}, [collectionField, labelKey, run, valueKey]);
|
||||
|
||||
// do not format the dependencies
|
||||
}, [collectionField, labelKey, run, valueKey, field.componentProps?.params, field.componentProps?.params?.sort]);
|
||||
|
||||
if (!collectionField) {
|
||||
return {};
|
||||
|
@ -48,7 +48,7 @@ export const AssociationFilterItem = withDynamicSchemaProps(
|
||||
|
||||
const defaultActiveKeyCollapse = useMemo<React.Key[]>(
|
||||
() => (defaultCollapse && collectionField?.name ? [collectionField.name] : []),
|
||||
[],
|
||||
[collectionField.name, defaultCollapse],
|
||||
);
|
||||
const valueKey = _valueKey || collectionField?.targetKey || 'id';
|
||||
const labelKey = _labelKey || fieldSchema['x-component-props']?.fieldNames?.label || valueKey;
|
||||
|
Loading…
Reference in New Issue
Block a user