Skip to content

Commit

Permalink
chore: build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Dec 17, 2024
1 parent c1ba312 commit 36edcbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/components/layers/ReorderLongPressHandler.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export class ReorderLongPressHandler {}
export default class ReorderLongPressHandler {
static initWithOwner(owner: WeakRef<IOSCollectionView>): ReorderLongPressHandler
}
4 changes: 2 additions & 2 deletions app/components/peaks/PeakFinder.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@
<mdbutton class="mdi" col={1} fontSize={16} text="mdi-bug" variant="text" width={undefined} on:tap={() => (selectedPageIndex = 1)} />
<pager colSpan={2} disableSwipe={false} row={1} selectedIndex={selectedPageIndex} on:selectedIndexChange={(e) => (selectedPageIndex = e['value'])}>
<pageritem>
<collectionview bind:this={collectionView1} {itemIdGenerator} itemTemplateSelector={selectTemplate} items={listView1Items} android:marginBottom={windowInsetBottom}>
<collectionview bind:this={collectionView1} {itemIdGenerator} itemTemplateSelector={selectTemplate} items={listView1Items} android:marginBottom={$windowInset.bottom}>
<Template key="checkbox" let:item>
<checkbox checked={item.value} text={item.title} on:checkedChange={(e) => onCheckBox(item, e.value)} />
</Template>
Expand All @@ -644,7 +644,7 @@
</collectionview>
</pageritem>
<pageritem>
<collectionview bind:this={collectionView2} {itemIdGenerator} itemTemplateSelector={selectTemplate} items={listView2Items} android:marginBottom={windowInsetBottom}>
<collectionview bind:this={collectionView2} {itemIdGenerator} itemTemplateSelector={selectTemplate} items={listView2Items} android:marginBottom={$windowInset.bottom}>
<Template key="checkbox" let:item>
<checkbox checked={item.value} text={item.title} on:checkedChange={(e) => onCheckBox(item, e.value)} />
</Template>
Expand Down

0 comments on commit 36edcbc

Please sign in to comment.