You've already forked AstralRinth
forked from didirus/AstralRinth
Fix app builds not launching (#3035)
* Fix app builds not launching * Revert tauri version change
This commit is contained in:
@@ -79,11 +79,11 @@ function setSelected(value: boolean) {
|
||||
</div>
|
||||
<div class="bg-bg-raised rounded-xl">
|
||||
<VirtualScroller :items="items" :default-size="64" style="height: 100%">
|
||||
<template #item="{ ref }">
|
||||
<template #item="{ ref, index }">
|
||||
<ContentListItem
|
||||
v-model="selectionStates[ref.filename]"
|
||||
:item="ref"
|
||||
:last="ref === items.length - 1"
|
||||
:last="index === items.length - 1"
|
||||
class="mb-2"
|
||||
@update:model-value="updateSelection"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user