fix: restore location section (#587)

Former-commit-id: 0995478cc0
This commit is contained in:
Hayden 2023-10-15 09:37:47 -05:00 committed by GitHub
parent 6e203e7833
commit 31839eb444

View file

@ -166,6 +166,13 @@
<section v-if="location && items"> <section v-if="location && items">
<ItemViewSelectable :items="items" /> <ItemViewSelectable :items="items" />
</section> </section>
<section v-if="location && location.children.length > 0" class="mt-6">
<BaseSectionHeader class="mb-5"> Child Locations </BaseSectionHeader>
<div class="grid gap-2 grid-cols-1 sm:grid-cols-3">
<LocationCard v-for="item in location.children" :key="item.id" :location="item" />
</div>
</section>
</BaseContainer> </BaseContainer>
</div> </div>
</template> </template>