Add a final check for no sticker data
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Trenton Zimmer
2025-03-21 01:08:19 -04:00
parent cb6230a1b7
commit 22c81f6227

View File

@@ -44,6 +44,10 @@ const collapsedStickers = ref(
Array.isArray(newTrbitem.stickers) ? newTrbitem.stickers.map(() => true) : []
);
if (!newTrbitem.stickers) {
newTrbitem.stickers = [];
}
watch(
() => props.version,
() => {