aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/Control/ItemStackPicker.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Control/ItemStackPicker.vue b/src/components/Control/ItemStackPicker.vue
index 613adfe..d16090e 100644
--- a/src/components/Control/ItemStackPicker.vue
+++ b/src/components/Control/ItemStackPicker.vue
@@ -24,7 +24,7 @@ const isQuestItem = computed(() => {
return value.value?.['quest-item'] !== undefined;
});
const isItemStack = computed(() => {
- if (typeof value.value !== 'object') {
+ if (typeof value.value !== 'object' || value.value === null) {
return false;
}