Quickfix expert id error
This commit is contained in:
parent
9bd0af45a3
commit
563897d96b
|
|
@ -255,26 +255,26 @@ watch(
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<!-- <div-->
|
||||||
v-for="expert in experts"
|
<!-- v-for="expert in experts"-->
|
||||||
:key="expert.id"
|
<!-- :key="expert.id"-->
|
||||||
class="mb-6 mt-6 flex flex-row items-center space-x-2 last:mb-0"
|
<!-- class="mb-6 mt-6 flex flex-row items-center space-x-2 last:mb-0"-->
|
||||||
>
|
<!-- >-->
|
||||||
<img
|
<!-- <img-->
|
||||||
class="h-[48px] rounded-full"
|
<!-- class="h-[48px] rounded-full"-->
|
||||||
:alt="expert.last_name"
|
<!-- :alt="expert.last_name"-->
|
||||||
:src="
|
<!-- :src="-->
|
||||||
expert.avatar_url ||
|
<!-- expert.avatar_url ||-->
|
||||||
'/static/avatars/myvbv-default-avatar.png'
|
<!-- '/static/avatars/myvbv-default-avatar.png'-->
|
||||||
"
|
<!-- "-->
|
||||||
/>
|
<!-- />-->
|
||||||
<div class="flex flex-col">
|
<!-- <div class="flex flex-col">-->
|
||||||
{{ expert.first_name }} {{ expert.last_name }}
|
<!-- {{ expert.first_name }} {{ expert.last_name }}-->
|
||||||
<a class="text-gray-800" :href="`mailto:${expert.email}`">
|
<!-- <a class="text-gray-800" :href="`mailto:${expert.email}`">-->
|
||||||
{{ expert.email }}
|
<!-- {{ expert.email }}-->
|
||||||
</a>
|
<!-- </a>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue