aboutsummaryrefslogtreecommitdiffstats
path: root/components/base/ItemStack
diff options
context:
space:
mode:
Diffstat (limited to 'components/base/ItemStack')
-rw-r--r--components/base/ItemStack/ItemStackModal.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/base/ItemStack/ItemStackModal.vue b/components/base/ItemStack/ItemStackModal.vue
index 865c054..2a53926 100644
--- a/components/base/ItemStack/ItemStackModal.vue
+++ b/components/base/ItemStack/ItemStackModal.vue
@@ -47,7 +47,9 @@ const selectedQuestItem = computed({
},
set(newValue: string) {
value.value = {}
- value.value['quest-item'] = newValue;
+ if (newValue) {
+ value.value['quest-item'] = newValue;
+ }
}
})
const knownQuestItems = computed(() => { return session.session.items.map((item) => item.id) });
@@ -102,6 +104,7 @@ const confirm = () => {
<div id="material" class="option-group" v-if="selectedType === 'material'">
<label for="material">Material</label>
<multiselect v-model="value" :options="materials" :searchable="true" placeholder="Enter material name" />
+ <p>Any items of this material will be matched.</p>
</div>
<div id="itemstack" class="option-group" v-if="selectedType === 'itemstack'">