mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-08 15:09:27 +08:00
fix(InternalPicker): correct display logic for multiple selection
This commit is contained in:
parent
7a52116360
commit
6885f38d8e
@ -144,7 +144,7 @@ export const InternalPicker = observer(
|
||||
setVisible(false);
|
||||
},
|
||||
style: {
|
||||
display: multiple !== false && ['o2m', 'm2m', 'mbm'].includes(collectionField?.interface) ? 'block' : 'none',
|
||||
display: multiple === false ? 'none' : 'block',
|
||||
},
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user