Skip to content

Commit

Permalink
chore: svelte check error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Jan 14, 2025
1 parent 26761a5 commit 669a328
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/compare/CompareWeather.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,13 @@
<pullrefresh bind:this={pullRefresh} row={1} on:refresh={onPullToRefresh}>
<collectionview bind:this={collectionView} id="data" itemTemplateSelector={selectDataTemplate} items={data}>
<Template key="linechart" let:item>
<CompareLineChart height={200} {item} />
<CompareLineChart height={200} {item} {weatherLocation} />
</Template>
<Template key="scatterchart" let:item>
<CompareLineChart height={200} {item} />
<CompareLineChart height={200} {item} {weatherLocation} />
</Template>
<Template key="weathericons" let:item>
<CompareWeatherIcons {item} />
<CompareWeatherIcons {item} {weatherLocation} />
</Template>
</collectionview>
</pullrefresh>
Expand Down

0 comments on commit 669a328

Please sign in to comment.