Skip to content

Commit

Permalink
Merge pull request #27378 from mkouba/devui-qute-fix-table
Browse files Browse the repository at this point in the history
Dev UI - qute - fix table of discovered templates
  • Loading branch information
gastaldi committed Aug 19, 2022
2 parents c48cc16 + fc51d02 commit 4a4a9f5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{#include main}
{#include main fluid=true}
{#style}
.annotation {
color: gray;
Expand Down Expand Up @@ -26,7 +26,7 @@
<td>
<ul>
{#each template.variants}
<li>{it}</li>
<li>{it.key}</li>
{/each}
</ul>
</td>
Expand All @@ -36,7 +36,7 @@
<td>
{#if template.parameters}
{#for entry in template.parameters}
{entry.key}: {entry.value}</br>
<strong>{entry.key}</strong>: {entry.value}</br>
{/for}
{/if}
</td>
Expand Down

0 comments on commit 4a4a9f5

Please sign in to comment.