Skip to content

Commit

Permalink
fix: Get root_component
Browse files Browse the repository at this point in the history
  • Loading branch information
huyenngn committed Apr 8, 2024
1 parent 2e8a248 commit 49dd1c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion templates/classes.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<tr>
<th>Property Name</th>
<th>Type</th>
<th>Kind</th>
<th>Multiplicity</th>
<th>Description</th>
</tr>
Expand All @@ -38,8 +39,10 @@
{% if property.type.__class__ == object.__class__ %}
<a href="/classes/{{ property.type.uuid }}">{{ property.type.name }}</a>
{% else %}
{{ property.type.name }}</td>
{{ property.type.name }}
{% endif %}
</td>
<td>{{ property.kind }}</td>
<td>{{ property.min_card.value }} .. {{ property.max_card.value }}</td>
<td>{% if property.description %}
{{ property.description }}
Expand Down
2 changes: 1 addition & 1 deletion templates/system-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ variable:
type: SystemComponent
below: sa
filters:
name: "System"
is_actor: false

0 comments on commit 49dd1c0

Please sign in to comment.