mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-02 12:37:06 +00:00
fix(graphql): making glossaryTermInfo nullable in glossaryTerm. (#3576)
This commit is contained in:
parent
b02cd5fb25
commit
235760f28b
@ -685,7 +685,7 @@ type GlossaryTerm implements Entity {
|
||||
Deprecated, use properties field instead
|
||||
Details of the Glossary Term
|
||||
"""
|
||||
glossaryTermInfo: GlossaryTermInfo!
|
||||
glossaryTermInfo: GlossaryTermInfo
|
||||
|
||||
"""
|
||||
Edges extending from this entity
|
||||
|
@ -90,7 +90,7 @@ export default function GlossaryTermProfile() {
|
||||
<GlossaryTermHeader
|
||||
sourceRef={glossaryTermInfo?.sourceRef || ''}
|
||||
sourceUrl={glossaryTermInfo?.sourceUrl as string}
|
||||
definition={glossaryTermInfo.definition}
|
||||
definition={glossaryTermInfo?.definition as string}
|
||||
ownership={ownership}
|
||||
/>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user