Skip to content

Commit

Permalink
Hide disabled peyote plants when verbose is off.
Browse files Browse the repository at this point in the history
  • Loading branch information
Senexis committed May 11, 2024
1 parent e9eb68e commit a6a72e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/QuickView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ const rdoStamps = computed(() => getRdoStamps());
</template>
</ul>
</template>
<template v-if="peyotePlants.disabled.length">
<template v-if="settings.verbose && peyotePlants.disabled.length">
<h3 class="my-1 font-semibold">Disabled Peyote Plants</h3>
<ul class="grid sm:grid-cols-2 lg:grid-cols-3 sm:gap-x-4 list-disc">
<template v-for="item in peyotePlants.disabled" :key="item">
Expand Down

0 comments on commit a6a72e3

Please sign in to comment.