Skip to content

Commit

Permalink
Small performance boost
Browse files Browse the repository at this point in the history
  • Loading branch information
OrigamingWasTaken committed Jul 14, 2024
1 parent ccf9c90 commit fbf58e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/windows/main/pages/Settings/Panel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<p class="text-3xl font-bold text-black dark:text-white">{panel.name}</p>
<p class="text-[13px] text-neutral-700 dark:text-neutral-300">{@html panel.description}</p>
</div>
{#each panel.sections || [] as section}
{#each panel.sections || [] as section (section.id)}
<div class="mt-5">
<p class="text-xl font-bold text-red-600 dark:text-red-400">{section.name}</p>
<p class="text-[13px] text-black dark:text-neutral-50">{section.description}</p>
Expand Down

0 comments on commit fbf58e0

Please sign in to comment.