Skip to content

Commit

Permalink
[Labels] Remove {#each} key until configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
techniq committed Mar 7, 2024
1 parent 7798d6f commit d201fd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/layerchart/src/lib/components/Labels.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@

<g class="Labels">
<!-- TODO: Determine way to set lookup -->
{#each $flatData as d, i (getLabelText(d))}
<!-- {#each $flatData as d, i (getLabelText(d))} -->
{#each $flatData as d}
{@const value = getValue(d)}
{@const position = getPosition(d)}
{@const textProps = getTextProps(d)}
Expand Down

0 comments on commit d201fd1

Please sign in to comment.