Skip to content

Commit

Permalink
Merge pull request #197 from nazywam/bugfix/content-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki authored Jan 11, 2024
2 parents 32ccfec + 02f0bf5 commit 8b10f83
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions frontend/src/components/bodies/Body.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@
<table class="table is-narrow is-fullwidth">
<tbody>
<tr>
<th>ContentComponent-Type</th>
<td>{{ body.ContentComponentType || "N/A" }}</td>
<th>Content-Type</th>
<td>{{ body.contentType || "N/A" }}</td>
</tr>
<tr>
<th>ContentComponent</th>
<th>Content</th>
<td>
<ContentComponent
:ContentComponent="body.ContentComponent"
:ContentComponentType="body.ContentComponentType"
/>
<ContentComponent :content="body.content" :contentType="body.contentType" />
</td>
</tr>
<tr>
Expand Down

0 comments on commit 8b10f83

Please sign in to comment.