Display column title name in crudlist

This commit is contained in:
2023-03-12 13:23:49 +01:00
parent 8319fa9fac
commit 3390acbc82
3 changed files with 17 additions and 6 deletions

View File

@@ -181,7 +181,7 @@ export class JsonschemasService {
} else if (this.is_union(resource)) {
for (const ref of resource.oneOf!) {
// @ts-ignore
if (this.has_property(ref, property_name)) {
if (this.has_descendant(ref, property_name)) {
// @ts-ignore
return this.get_descendant(ref, property_name);
}