mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:06:06 +00:00
fix: view collection association field foreignkey should be select (#3671)
This commit is contained in:
parent
cdf9f4818f
commit
4a346a4119
@ -221,11 +221,11 @@ export const ForeignKey = observer(
|
||||
const { getCollection } = useCollectionManager_deprecated();
|
||||
const record = useRecord();
|
||||
const field: any = useField();
|
||||
const { collectionName, target, type, through, name } = record;
|
||||
const { collectionName, target, type, through, name, template } = record;
|
||||
const value = record[field.props.name];
|
||||
const compile = useCompile();
|
||||
const form = useForm();
|
||||
const [initialValue, setInitialValue] = useState(value || field.initialValue);
|
||||
const [initialValue, setInitialValue] = useState(value || (template === 'view' ? null : field.initialValue));
|
||||
useEffect(() => {
|
||||
const effectField = ['belongsTo'].includes(type)
|
||||
? collectionName
|
||||
@ -251,9 +251,10 @@ export const ForeignKey = observer(
|
||||
}
|
||||
}
|
||||
}, [type]);
|
||||
const Compoent = template === 'view' ? Select : AutoComplete;
|
||||
return (
|
||||
<div>
|
||||
<AutoComplete
|
||||
<Compoent
|
||||
disabled={disabled}
|
||||
value={initialValue}
|
||||
options={options}
|
||||
|
Loading…
Reference in New Issue
Block a user