fixed warnings
This commit is contained in:
@@ -194,7 +194,7 @@
|
||||
</defs>
|
||||
|
||||
<!-- Out-of-stock spans — rose shade behind everything -->
|
||||
{#each oosBands as b}
|
||||
{#each oosBands as b (b.x)}
|
||||
<rect
|
||||
x={b.x}
|
||||
y={PAD.t}
|
||||
@@ -206,7 +206,7 @@
|
||||
{/each}
|
||||
|
||||
<!-- Gridlines + price ticks -->
|
||||
{#each gridLines as g}
|
||||
{#each gridLines as g (g.v)}
|
||||
<line
|
||||
x1={PAD.l}
|
||||
y1={g.gy}
|
||||
@@ -254,7 +254,7 @@
|
||||
/>
|
||||
|
||||
<!-- Per-check dots; sold-out checks ringed in rose -->
|
||||
{#each coords as c, i}
|
||||
{#each coords as c, i (i)}
|
||||
<circle
|
||||
cx={c.cx}
|
||||
cy={c.cy}
|
||||
|
||||
Reference in New Issue
Block a user