rename ecologyTopics → boardTopics in member detail page

This commit is contained in:
Jennie Robinson Faber 2026-04-14 12:18:16 +01:00
parent cdef868256
commit 49c54764c6

View file

@ -110,7 +110,7 @@
<!-- Two-column: Craft Tags + Board -->
<div
v-if="craftTagsDisplay.length > 0 || ecologyTopics.length > 0 || member.board?.details"
v-if="craftTagsDisplay.length > 0 || boardTopics.length > 0 || member.board?.details"
class="profile-two-col"
>
<!-- Left: What I Do -->
@ -128,9 +128,9 @@
<!-- Right: Board -->
<div class="profile-section">
<div class="section-label">Board</div>
<div v-if="ecologyTopics.length > 0" class="tag-list">
<div v-if="boardTopics.length > 0" class="tag-list">
<span
v-for="topic in ecologyTopics"
v-for="topic in boardTopics"
:key="topic.tagSlug"
class="tag-pill connection-pill"
>
@ -274,7 +274,7 @@ const tagLabel = (pool, slug) => {
const craftTagsDisplay = computed(() => member.value?.craftTags || []);
const ecologyTopics = computed(
const boardTopics = computed(
() => member.value?.board?.topics || [],
);