We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96d27f commit b728575Copy full SHA for b728575
changelog/4172.added.md
@@ -0,0 +1 @@
1
+Add HFID to schema view in the frontend
frontend/app/src/screens/schema/schema-viewer.tsx
@@ -159,6 +159,7 @@ const Properties = ({ schema }: { schema: IModelSchema }) => {
159
<PropertyRow title="Name" value={schema.name} />
160
<PropertyRow title="Label" value={schema.label} />
161
<PropertyRow title="Kind" value={schema.kind} />
162
+ <PropertyRow title="Human Friendly ID" value={schema.human_friendly_id} />
163
<PropertyRow title="Display labels" value={schema.display_labels} />
164
<PropertyRow title="Description" value={schema.description} />
165
</div>
0 commit comments