feat: minimum support for unrefed object cleanup

This commit is contained in:
Huskydog9988
2025-05-08 19:20:34 -04:00
committed by DecDuck
parent 892e46801a
commit 8a9b2bfc87
16 changed files with 100 additions and 76 deletions
+2 -2
View File
@@ -9,7 +9,7 @@
class="absolute inset-0 transition-all duration-300 group-hover:scale-110"
>
<img
:src="useObject(game.mCoverId)"
:src="useObject(game.mCoverObjectId)"
class="w-full h-full object-cover brightness-[90%]"
:class="{ active: active === game.id }"
:alt="game.mName"
@@ -42,7 +42,7 @@ const props = defineProps<{
game:
| SerializeObject<{
id: string;
mCoverId: string;
mCoverObjectId: string;
mName: string;
mShortDescription: string;
}>