Skip to content

Commit

Permalink
fix: dosplay component name
Browse files Browse the repository at this point in the history
  • Loading branch information
agrrh committed Dec 10, 2023
1 parent 747c20a commit 7294945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/ComponentsList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="container">
{#each components as componentName}
{#await fetchData(componentName, view)}
<Component name="..." dummy="true" />
<Component name="{componentName}" dummy="true" />
{:then data}
<Component name={data.name} observations={data.observations} uptime={data.uptime} {view} />
{:catch error}
Expand Down

0 comments on commit 7294945

Please sign in to comment.