Skip to content

Commit

Permalink
#1116 | Show form element details in concept usage
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed Nov 1, 2024
1 parent ab78608 commit 9d0ebb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/formDesigner/components/ConceptDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ function ConceptDetails({ userInfo, ...props }) {
return (
<>
<li key={index}>
<a href={`#/appDesigner/forms/${form.formUUID}`}>{form.formName}</a>
<a href={`#/appDesigner/forms/${form.formUUID}`}>{form.formName}</a> -> {form.formElementGroupName} ->{" "}
{!isNil(form.formElementQGGroupName) ? form.formElementQGGroupName + " ->" : ""} {form.formElementName}
<p />
</li>
</>
Expand Down

0 comments on commit 9d0ebb2

Please sign in to comment.