mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:25:52 +00:00
fix: prevent URL change on clicking unconfigured association field (#4919)
This commit is contained in:
parent
09e3cb4996
commit
ac3d6d91b7
@ -98,10 +98,15 @@ const ButtonLinkList: FC<ButtonListProps> = (props) => {
|
||||
if (designable) {
|
||||
insertViewer(schema.Viewer);
|
||||
}
|
||||
openPopup({
|
||||
recordData: record,
|
||||
parentRecordData: recordData,
|
||||
});
|
||||
|
||||
// fix https://nocobase.height.app/T-4794/description
|
||||
if (fieldSchema.properties) {
|
||||
openPopup({
|
||||
recordData: record,
|
||||
parentRecordData: recordData,
|
||||
});
|
||||
}
|
||||
|
||||
ellipsisWithTooltipRef?.current?.setPopoverVisible(false);
|
||||
}}
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user