mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Fix displaying of thumbnail in O2M/M2O/M2A interfaces (#19395)
This commit is contained in:
5
.changeset/chilly-fishes-own.md
Normal file
5
.changeset/chilly-fishes-own.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@directus/app': patch
|
||||
---
|
||||
|
||||
Fixed displaying of thumbnail in O2M/M2O/M2A interfaces
|
||||
@@ -134,7 +134,7 @@ function handleObject(fieldKey: string) {
|
||||
.join('.');
|
||||
}
|
||||
|
||||
const value = get(props.item, fieldKey);
|
||||
const value = fieldKey ? get(props.item, fieldKey) : props.item;
|
||||
|
||||
if (value === undefined) return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user