1
0
Fork 0

fix: restore location section (#587)

This commit is contained in:
Hayden 2023-10-15 09:37:47 -05:00 committed by GitHub
parent ae4b95301f
commit 0995478cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -166,6 +166,13 @@
<section v-if="location && items">
<ItemViewSelectable :items="items" />
</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>
</div>
</template>